Searched refs:ntemp (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/hwmon/
H A Dlm75.h39 int ntemp = SENSORS_LIMIT(temp, LM75_TEMP_MIN, LM75_TEMP_MAX); local
40 ntemp += (ntemp<0 ? -250 : 250);
41 return (u16)((ntemp / 500) << 7);
H A Dlm77.c102 int ntemp = SENSORS_LIMIT(temp, LM77_TEMP_MIN, LM77_TEMP_MAX); local
103 return (ntemp / 500) * 8;
H A Dasb100.c143 int ntemp = SENSORS_LIMIT(temp, ASB100_TEMP_MIN, ASB100_TEMP_MAX); local
144 ntemp += (ntemp<0 ? -500 : 500);
145 return (u8)(ntemp / 1000);
H A Djc42.c232 int ntemp = SENSORS_LIMIT(temp, local
237 return (ntemp * 2 / 125) & 0x1fff;
H A Dw83627hf.c272 int ntemp = SENSORS_LIMIT(temp, TEMP_MIN, TEMP_MAX); local
273 ntemp += (ntemp<0 ? -500 : 500);
274 return (u8)(ntemp / 1000);
H A Dlm93.c416 int ntemp = SENSORS_LIMIT(temp, LM93_TEMP_MIN, LM93_TEMP_MAX); local
417 ntemp += (ntemp<0 ? -500 : 500);
418 return (u8)(ntemp / 1000);

Completed in 83 milliseconds