Lines Matching defs:lm85_data
300 struct lm85_data { struct
301 struct device *hwmon_dev;
302 const int *freq_map;
303 enum chips type;
305 bool has_vid5; /* true if VID5 is configured for ADT7463 or ADT7468 */
307 struct mutex update_lock;
308 int valid; /* !=0 if following fields are valid */
309 unsigned long last_reading; /* In jiffies */
310 unsigned long last_config; /* In jiffies */
312 u8 in[8]; /* Register value */
313 u8 in_max[8]; /* Register value */
314 u8 in_min[8]; /* Register value */
315 s8 temp[3]; /* Register value */
339 static struct lm85_data *lm85_update_device(struct device *dev); argument