Lines Matching defs:w83781d_data
208 struct w83781d_data { struct
209 struct i2c_client *client;
210 struct device *hwmon_dev;
211 struct mutex lock;
212 enum chips type;
215 const char *name;
216 int isa_addr;
218 struct mutex update_lock;
219 char valid; /* !=0 if following fields are valid */
220 unsigned long last_updated; /* In jiffies */
222 struct i2c_client *lm75[2]; /* for secondary I2C addresses */
225 u8 in[9]; /* Register value - 8 & 9 for 782D only */
226 u8 in_max[9]; /* Register value - 8 & 9 for 782D only */
250 static struct w83781d_data *w83781d_data_if_isa(void); argument