Source
180
180
181
181
}
182
182
183
183
static umode_t tmp421_is_visible(const void *data, enum hwmon_sensor_types type,
184
184
u32 attr, int channel)
185
185
{
186
186
switch (attr) {
187
187
case hwmon_temp_fault:
188
188
if (channel == 0)
189
189
return 0;
190
-
return S_IRUGO;
190
+
return 0444;
191
191
case hwmon_temp_input:
192
-
return S_IRUGO;
192
+
return 0444;
193
193
default:
194
194
return 0;
195
195
}
196
196
}
197
197
198
198
static int tmp421_init_client(struct i2c_client *client)
199
199
{
200
200
int config, config_orig;
201
201
202
202
/* Set the conversion rate to 2 Hz */