Lines Matching defs:adm1031_data
63 struct adm1031_data { struct
64 struct i2c_client *client;
65 const struct attribute_group *groups[3];
66 struct mutex update_lock;
67 int chip_type;
68 bool valid; /* true if following fields are valid */
69 unsigned long last_updated; /* In jiffies */
70 unsigned int update_interval; /* In milliseconds */
75 const auto_chan_table_t *chan_select_table;
76 u16 alarm;
77 u8 conf1;
78 u8 conf2;
79 u8 fan[2];
80 u8 fan_div[2];
81 u8 fan_min[2];
82 u8 pwm[2];
83 u8 old_pwm[2];
107 static struct adm1031_data *adm1031_update_device(struct device *dev) in adm1031_update_device() argument