summaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2024-10-11 21:58:09 +0200
committerGuenter Roeck <linux@roeck-us.net>2024-11-10 14:48:06 -0800
commit10963cef5f510a847939d50c455263618cfe8a70 (patch)
treedbc95c93b79b45997533f8ca3eb791d05b804bb0 /drivers/hwmon
parent041e20ee60409de444e71981ad6941393fb5d7a3 (diff)
downloadlinux-stable-10963cef5f510a847939d50c455263618cfe8a70.tar.gz
linux-stable-10963cef5f510a847939d50c455263618cfe8a70.tar.bz2
linux-stable-10963cef5f510a847939d50c455263618cfe8a70.zip
hwmon: (sl28cpld) 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: <5c26d8cf-d6dc-46c5-be7c-fd8207b3f177@gmail.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/sl28cpld-hwmon.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/hwmon/sl28cpld-hwmon.c b/drivers/hwmon/sl28cpld-hwmon.c
index e020f25c9300..454cc844fb9d 100644
--- a/drivers/hwmon/sl28cpld-hwmon.c
+++ b/drivers/hwmon/sl28cpld-hwmon.c
@@ -23,13 +23,6 @@ struct sl28cpld_hwmon {
u32 offset;
};
-static umode_t sl28cpld_hwmon_is_visible(const void *data,
- enum hwmon_sensor_types type,
- u32 attr, int channel)
-{
- return 0444;
-}
-
static int sl28cpld_hwmon_read(struct device *dev,
enum hwmon_sensor_types type, u32 attr,
int channel, long *input)
@@ -73,7 +66,7 @@ static const struct hwmon_channel_info * const sl28cpld_hwmon_info[] = {
};
static const struct hwmon_ops sl28cpld_hwmon_ops = {
- .is_visible = sl28cpld_hwmon_is_visible,
+ .visible = 0444,
.read = sl28cpld_hwmon_read,
};