Searched refs:ntemp (Results 1 - 11 of 11) sorted by relevance
/kernel/linux/linux-5.10/drivers/hwmon/ |
H A D | lm75.h | 27 int ntemp = clamp_val(temp, LM75_TEMP_MIN, LM75_TEMP_MAX); in LM75_TEMP_TO_REG() local 29 ntemp += (ntemp < 0 ? -250 : 250); in LM75_TEMP_TO_REG() 30 return (u16)((ntemp / 500) << 7); in LM75_TEMP_TO_REG()
|
H A D | jc42.c | 209 int ntemp = clamp_val(temp, in jc42_temp_to_reg() local 214 return (ntemp * 2 / 125) & 0x1fff; in jc42_temp_to_reg()
|
H A D | asb100.c | 138 int ntemp = clamp_val(temp, ASB100_TEMP_MIN, ASB100_TEMP_MAX); in TEMP_TO_REG() local 139 ntemp += (ntemp < 0 ? -500 : 500); in TEMP_TO_REG() 140 return (u8)(ntemp / 1000); in TEMP_TO_REG()
|
H A D | w83627hf.c | 270 int ntemp = clamp_val(temp, TEMP_MIN, TEMP_MAX); in TEMP_TO_REG() local 271 ntemp += (ntemp < 0 ? -500 : 500); in TEMP_TO_REG() 272 return (u8)(ntemp / 1000); in TEMP_TO_REG()
|
H A D | lm93.c | 427 int ntemp = clamp_val(temp, LM93_TEMP_MIN, LM93_TEMP_MAX); in LM93_TEMP_TO_REG() local 428 ntemp += (ntemp < 0 ? -500 : 500); in LM93_TEMP_TO_REG() 429 return (u8)(ntemp / 1000); in LM93_TEMP_TO_REG()
|
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | lm75.h | 28 int ntemp = clamp_val(temp, LM75_TEMP_MIN, LM75_TEMP_MAX); in LM75_TEMP_TO_REG() local 30 ntemp += (ntemp < 0 ? -250 : 250); in LM75_TEMP_TO_REG() 31 return (u16)((ntemp / 500) << 7); in LM75_TEMP_TO_REG()
|
H A D | jc42.c | 219 int ntemp = clamp_val(temp, in jc42_temp_to_reg() local 224 return (ntemp * 2 / 125) & 0x1fff; in jc42_temp_to_reg()
|
H A D | asb100.c | 138 int ntemp = clamp_val(temp, ASB100_TEMP_MIN, ASB100_TEMP_MAX); in TEMP_TO_REG() local 139 ntemp += (ntemp < 0 ? -500 : 500); in TEMP_TO_REG() 140 return (u8)(ntemp / 1000); in TEMP_TO_REG()
|
H A D | w83627hf.c | 270 int ntemp = clamp_val(temp, TEMP_MIN, TEMP_MAX); in TEMP_TO_REG() local 271 ntemp += (ntemp < 0 ? -500 : 500); in TEMP_TO_REG() 272 return (u8)(ntemp / 1000); in TEMP_TO_REG()
|
H A D | lm93.c | 427 int ntemp = clamp_val(temp, LM93_TEMP_MIN, LM93_TEMP_MAX); in LM93_TEMP_TO_REG() local 428 ntemp += (ntemp < 0 ? -500 : 500); in LM93_TEMP_TO_REG() 429 return (u8)(ntemp / 1000); in LM93_TEMP_TO_REG()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/ |
H A D | nouveau_usif.c | 382 struct usif_notify *notify, *ntemp; in usif_client_fini() local 384 list_for_each_entry_safe(notify, ntemp, &cli->notifys, head) { in usif_client_fini()
|
Completed in 20 milliseconds