Source
187
187
case hwmon_temp_max_hyst:
188
188
return 0644;
189
189
}
190
190
break;
191
191
default:
192
192
break;
193
193
}
194
194
return 0;
195
195
}
196
196
197
-
/*-----------------------------------------------------------------------*/
198
-
199
-
/* device probe and removal */
200
-
201
-
/* chip configuration */
202
-
203
-
static const u32 lm75_chip_config[] = {
204
-
HWMON_C_REGISTER_TZ | HWMON_C_UPDATE_INTERVAL,
205
-
0
206
-
};
207
-
208
-
static const struct hwmon_channel_info lm75_chip = {
209
-
.type = hwmon_chip,
210
-
.config = lm75_chip_config,
211
-
};
212
-
213
-
static const u32 lm75_temp_config[] = {
214
-
HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_MAX_HYST,
215
-
0
216
-
};
217
-
218
-
static const struct hwmon_channel_info lm75_temp = {
219
-
.type = hwmon_temp,
220
-
.config = lm75_temp_config,
221
-
};
222
-
223
197
static const struct hwmon_channel_info *lm75_info[] = {
224
-
&lm75_chip,
225
-
&lm75_temp,
198
+
HWMON_CHANNEL_INFO(chip,
199
+
HWMON_C_REGISTER_TZ | HWMON_C_UPDATE_INTERVAL),
200
+
HWMON_CHANNEL_INFO(temp,
201
+
HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_MAX_HYST),
226
202
NULL
227
203
};
228
204
229
205
static const struct hwmon_ops lm75_hwmon_ops = {
230
206
.is_visible = lm75_is_visible,
231
207
.read = lm75_read,
232
208
.write = lm75_write,
233
209
};
234
210
235
211
static const struct hwmon_chip_info lm75_chip_info = {