diff options
Diffstat (limited to 'drivers/i2c/chips/lm63.c')
-rw-r--r-- | drivers/i2c/chips/lm63.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/chips/lm63.c b/drivers/i2c/chips/lm63.c index 7bdacfd65d4a..18b2876e8df6 100644 --- a/drivers/i2c/chips/lm63.c +++ b/drivers/i2c/chips/lm63.c | |||
@@ -98,9 +98,9 @@ SENSORS_INSMOD_1(lm63); | |||
98 | * Conversions and various macros | 98 | * Conversions and various macros |
99 | * For tachometer counts, the LM63 uses 16-bit values. | 99 | * For tachometer counts, the LM63 uses 16-bit values. |
100 | * For local temperature and high limit, remote critical limit and hysteresis | 100 | * For local temperature and high limit, remote critical limit and hysteresis |
101 | * value, it uses signed 8-bit values with LSB = 1 degree Celcius. | 101 | * value, it uses signed 8-bit values with LSB = 1 degree Celsius. |
102 | * For remote temperature, low and high limits, it uses signed 11-bit values | 102 | * For remote temperature, low and high limits, it uses signed 11-bit values |
103 | * with LSB = 0.125 degree Celcius, left-justified in 16-bit registers. | 103 | * with LSB = 0.125 degree Celsius, left-justified in 16-bit registers. |
104 | */ | 104 | */ |
105 | 105 | ||
106 | #define FAN_FROM_REG(reg) ((reg) == 0xFFFC || (reg) == 0 ? 0 : \ | 106 | #define FAN_FROM_REG(reg) ((reg) == 0xFFFC || (reg) == 0 ? 0 : \ |