Lines Matching defs:w83627hf_data
350 struct w83627hf_data { struct
351 unsigned short addr;
352 const char *name;
353 struct device *hwmon_dev;
354 struct mutex lock;
355 enum chips type;
357 struct mutex update_lock;
358 bool valid; /* true if following fields are valid */
359 unsigned long last_updated; /* In jiffies */
361 u8 in[9]; /* Register value */
362 u8 in_max[9]; /* Register value */
363 u8 in_min[9]; /* Register value */
364 u8 fan[3]; /* Register value */
365 u8 fan_min[3]; /* Register value */
366 u16 temp[3]; /* Register value */
367 u16 temp_max[3]; /* Register value */
368 u16 temp_max_hyst[3]; /* Register value */
369 u8 fan_div[3]; /* Register encoding, shifted right */
393 static inline void w83627hf_set_bank(struct w83627hf_data *data, u16 reg) in w83627hf_set_bank() argument