Lines Matching defs:it87_data
232 struct it87_data { struct
233 struct device *hwmon_dev;
234 enum chips type;
235 u8 revision;
237 unsigned short addr;
238 const char *name;
239 struct mutex update_lock;
240 char valid; /* !=0 if following fields are valid */
241 unsigned long last_updated; /* In jiffies */
243 u16 in_scaled; /* Internal voltage sensors are scaled */
244 u8 in[9]; /* Register value */
245 u8 in_max[8]; /* Register value */
246 u8 in_min[8]; /* Register value */
247 u8 has_fan; /* Bitfield, fans enabled */
248 u16 fan[5]; /* Register values, possibly combined */
249 u16 fan_min[5]; /* Register values, possibly combined */
250 s8 temp[3]; /* Register value */
251 s8 temp_high[3]; /* Register value */
252 s8 temp_low[3]; /* Register value */
253 u8 sensor; /* Register value */
254 u8 fan_div[3]; /* Register encoding, shifted right */
255 u8 vid; /* Register encoding, combined */
279 static inline int has_12mv_adc(const struct it87_data *data) in has_12mv_adc() argument