Source
50
50
51
51
static umode_t
52
52
scmi_hwmon_is_visible(const void *drvdata, enum hwmon_sensor_types type,
53
53
u32 attr, int channel)
54
54
{
55
55
const struct scmi_sensor_info *sensor;
56
56
const struct scmi_sensors *scmi_sensors = drvdata;
57
57
58
58
sensor = *(scmi_sensors->info[type] + channel);
59
59
if (sensor)
60
-
return S_IRUGO;
60
+
return 0444;
61
61
62
62
return 0;
63
63
}
64
64
65
65
static const struct hwmon_ops scmi_hwmon_ops = {
66
66
.is_visible = scmi_hwmon_is_visible,
67
67
.read = scmi_hwmon_read,
68
68
.read_string = scmi_hwmon_read_string,
69
69
};
70
70