Source
134
134
}
135
135
136
136
static umode_t tmp102_is_visible(const void *data, enum hwmon_sensor_types type,
137
137
u32 attr, int channel)
138
138
{
139
139
if (type != hwmon_temp)
140
140
return 0;
141
141
142
142
switch (attr) {
143
143
case hwmon_temp_input:
144
-
return S_IRUGO;
144
+
return 0444;
145
145
case hwmon_temp_max_hyst:
146
146
case hwmon_temp_max:
147
-
return S_IRUGO | S_IWUSR;
147
+
return 0644;
148
148
default:
149
149
return 0;
150
150
}
151
151
}
152
152
153
153
static u32 tmp102_chip_config[] = {
154
154
HWMON_C_REGISTER_TZ,
155
155
0
156
156
};
157
157