ntemp             382 drivers/gpu/drm/nouveau/nouveau_usif.c 	struct usif_notify *notify, *ntemp;
ntemp             384 drivers/gpu/drm/nouveau/nouveau_usif.c 	list_for_each_entry_safe(notify, ntemp, &cli->notifys, head) {
ntemp             138 drivers/hwmon/asb100.c 	int ntemp = clamp_val(temp, ASB100_TEMP_MIN, ASB100_TEMP_MAX);
ntemp             139 drivers/hwmon/asb100.c 	ntemp += (ntemp < 0 ? -500 : 500);
ntemp             140 drivers/hwmon/asb100.c 	return (u8)(ntemp / 1000);
ntemp             225 drivers/hwmon/jc42.c 	int ntemp = clamp_val(temp,
ntemp             230 drivers/hwmon/jc42.c 	return (ntemp * 2 / 125) & 0x1fff;
ntemp              27 drivers/hwmon/lm75.h 	int ntemp = clamp_val(temp, LM75_TEMP_MIN, LM75_TEMP_MAX);
ntemp              28 drivers/hwmon/lm75.h 	ntemp += (ntemp < 0 ? -250 : 250);
ntemp              29 drivers/hwmon/lm75.h 	return (u16)((ntemp / 500) << 7);
ntemp             427 drivers/hwmon/lm93.c 	int ntemp = clamp_val(temp, LM93_TEMP_MIN, LM93_TEMP_MAX);
ntemp             428 drivers/hwmon/lm93.c 	ntemp += (ntemp < 0 ? -500 : 500);
ntemp             429 drivers/hwmon/lm93.c 	return (u8)(ntemp / 1000);
ntemp             270 drivers/hwmon/w83627hf.c 	int ntemp = clamp_val(temp, TEMP_MIN, TEMP_MAX);
ntemp             271 drivers/hwmon/w83627hf.c 	ntemp += (ntemp < 0 ? -500 : 500);
ntemp             272 drivers/hwmon/w83627hf.c 	return (u8)(ntemp / 1000);