Lines Matching defs:w83781d_data
195 struct w83781d_data { struct
196 struct i2c_client *client;
197 struct device *hwmon_dev;
198 struct mutex lock;
199 enum chips type;
202 const char *name;
203 int isa_addr;
205 struct mutex update_lock;
206 char valid; /* !=0 if following fields are valid */
207 unsigned long last_updated; /* In jiffies */
209 struct i2c_client *lm75[2]; /* for secondary I2C addresses */
212 u8 in[9]; /* Register value - 8 & 9 for 782D only */
213 u8 in_max[9]; /* Register value - 8 & 9 for 782D only */
237 static struct w83781d_data *w83781d_data_if_isa(void); argument