mirror of https://github.com/torvalds/linux.git
hwmon: (gsc) Simplify specifying static visibility attribute
Use new member visible of struct hwmon_ops to simplify specifying the static attribute visibility. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Message-ID: <bd909a2c-23ee-437d-9bd4-858119f6f266@gmail.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
10963cef5f
commit
9df39924c4
|
|
@ -231,15 +231,8 @@ gsc_hwmon_read_string(struct device *dev, enum hwmon_sensor_types type,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static umode_t
|
|
||||||
gsc_hwmon_is_visible(const void *_data, enum hwmon_sensor_types type, u32 attr,
|
|
||||||
int ch)
|
|
||||||
{
|
|
||||||
return 0444;
|
|
||||||
}
|
|
||||||
|
|
||||||
static const struct hwmon_ops gsc_hwmon_ops = {
|
static const struct hwmon_ops gsc_hwmon_ops = {
|
||||||
.is_visible = gsc_hwmon_is_visible,
|
.visible = 0444,
|
||||||
.read = gsc_hwmon_read,
|
.read = gsc_hwmon_read,
|
||||||
.read_string = gsc_hwmon_read_string,
|
.read_string = gsc_hwmon_read_string,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue