Searched refs:ntemp (Results 1 – 6 of 6) sorted by relevance
/Linux-v4.19/drivers/hwmon/ |
D | lm75.h | 39 int ntemp = clamp_val(temp, LM75_TEMP_MIN, LM75_TEMP_MAX); in LM75_TEMP_TO_REG() local 40 ntemp += (ntemp < 0 ? -250 : 250); in LM75_TEMP_TO_REG() 41 return (u16)((ntemp / 500) << 7); in LM75_TEMP_TO_REG()
|
D | asb100.c | 151 int ntemp = clamp_val(temp, ASB100_TEMP_MIN, ASB100_TEMP_MAX); in TEMP_TO_REG() local 152 ntemp += (ntemp < 0 ? -500 : 500); in TEMP_TO_REG() 153 return (u8)(ntemp / 1000); in TEMP_TO_REG()
|
D | jc42.c | 238 int ntemp = clamp_val(temp, in jc42_temp_to_reg() local 243 return (ntemp * 2 / 125) & 0x1fff; in jc42_temp_to_reg()
|
D | w83627hf.c | 277 int ntemp = clamp_val(temp, TEMP_MIN, TEMP_MAX); in TEMP_TO_REG() local 278 ntemp += (ntemp < 0 ? -500 : 500); in TEMP_TO_REG() 279 return (u8)(ntemp / 1000); in TEMP_TO_REG()
|
D | lm93.c | 440 int ntemp = clamp_val(temp, LM93_TEMP_MIN, LM93_TEMP_MAX); in LM93_TEMP_TO_REG() local 441 ntemp += (ntemp < 0 ? -500 : 500); in LM93_TEMP_TO_REG() 442 return (u8)(ntemp / 1000); in LM93_TEMP_TO_REG()
|
/Linux-v4.19/drivers/gpu/drm/nouveau/ |
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()
|