Lines Matching defs:w83791d_data
279 struct w83791d_data { struct
280 struct device *hwmon_dev;
281 struct mutex update_lock;
283 char valid; /* !=0 if following fields are valid */
284 unsigned long last_updated; /* In jiffies */
287 struct i2c_client *lm75[2];
290 u8 in[NUMBER_OF_VIN]; /* Register value */
291 u8 in_max[NUMBER_OF_VIN]; /* Register value */
292 u8 in_min[NUMBER_OF_VIN]; /* Register value */
295 u8 fan[NUMBER_OF_FANIN]; /* Register value */
296 u8 fan_min[NUMBER_OF_FANIN]; /* Register value */
297 u8 fan_div[NUMBER_OF_FANIN]; /* Register encoding, shifted right */
301 s8 temp1[3]; /* current, over, thyst */
302 s16 temp_add[2][3]; /* fixed point value. Top 8 bits are the
334 static struct w83791d_data *w83791d_update_device(struct device *dev); argument