Lines Matching defs:adm1026_data
258 struct adm1026_data { struct
259 struct device *hwmon_dev;
261 struct mutex update_lock;
262 int valid; /* !=0 if following fields are valid */
263 unsigned long last_reading; /* In jiffies */
264 unsigned long last_config; /* In jiffies */
266 u8 in[17]; /* Register value */
267 u8 in_max[17]; /* Register value */
268 u8 in_min[17]; /* Register value */
269 s8 temp[3]; /* Register value */
270 s8 temp_min[3]; /* Register value */
271 s8 temp_max[3]; /* Register value */
272 s8 temp_tmin[3]; /* Register value */
273 s8 temp_crit[3]; /* Register value */
274 s8 temp_offset[3]; /* Register value */
275 u8 fan[8]; /* Register value */
276 u8 fan_min[8]; /* Register value */
300 static struct adm1026_data *adm1026_update_device(struct device *dev); argument