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