Lines Matching defs:lm87_data
142 struct lm87_data { struct
143 struct mutex update_lock;
144 char valid; /* zero until following fields are valid */
145 unsigned long last_updated; /* In jiffies */
147 u8 channel; /* register value */
148 u8 config; /* original register value */
150 u8 in[8]; /* register value */
151 u8 in_max[8]; /* register value */
152 u8 in_min[8]; /* register value */
153 u16 in_scale[8];
155 s8 temp[3]; /* register value */
156 s8 temp_high[3]; /* register value */
157 s8 temp_low[3]; /* register value */
158 s8 temp_crit_int; /* min of two register values */
159 s8 temp_crit_ext; /* min of two register values */
183 static struct lm87_data *lm87_update_device(struct device *dev) in lm87_update_device() argument