Commit 7916fdb0 authored by David S. Miller's avatar David S. Miller

[I2C]: If comparing against ULONG_MAX, use ulong type, in lm85.c

parent 820dbc21
......@@ -383,7 +383,7 @@ struct lm85_data {
u8 syncpwm3; /* Saved PWM3 for TACH 2,3,4 config */
u8 oppoint[3]; /* Register value */
u16 tmin_ctl; /* Register value */
u32 therm_total; /* Cummulative therm count */
unsigned long therm_total; /* Cummulative therm count */
u8 therm_limit; /* Register value */
u16 alarms; /* Register encoding, combined */
struct lm85_autofan autofan[3];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment