Lines Matching defs:w83791d_data
282 struct w83791d_data { struct
283 struct device *hwmon_dev;
284 struct mutex update_lock;
286 char valid; /* !=0 if following fields are valid */
287 unsigned long last_updated; /* In jiffies */
290 struct i2c_client *lm75[2];
293 u8 in[NUMBER_OF_VIN]; /* Register value */
294 u8 in_max[NUMBER_OF_VIN]; /* Register value */
295 u8 in_min[NUMBER_OF_VIN]; /* Register value */
298 u8 fan[NUMBER_OF_FANIN]; /* Register value */
299 u8 fan_min[NUMBER_OF_FANIN]; /* Register value */
300 u8 fan_div[NUMBER_OF_FANIN]; /* Register encoding, shifted right */
304 s8 temp1[3]; /* current, over, thyst */
305 s16 temp_add[2][3]; /* fixed point value. Top 8 bits are the
315 u8 pwm[5]; /* pwm duty cycle */
339 static struct w83791d_data *w83791d_update_device(struct device *dev); argument