Lines Matching defs:lm87_data
156 struct lm87_data { struct
157 struct device *hwmon_dev;
158 struct mutex update_lock;
159 char valid; /* zero until following fields are valid */
160 unsigned long last_updated; /* In jiffies */
162 u8 channel; /* register value */
163 u8 config; /* original register value */
165 u8 in[8]; /* register value */
166 u8 in_max[8]; /* register value */
167 u8 in_min[8]; /* register value */
168 u16 in_scale[8];
170 s8 temp[3]; /* register value */
171 s8 temp_high[3]; /* register value */
172 s8 temp_low[3]; /* register value */
196 static struct lm87_data *lm87_update_device(struct device *dev) in lm87_update_device() argument