summaryrefslogtreecommitdiff
path: root/drivers/hwmon/sl28cpld-hwmon.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>2023-04-06 23:38:19 +0300
committerGuenter Roeck <linux@roeck-us.net>2023-04-19 17:08:38 +0300
commit7f46e9883f530068473f2adae93d3cf4a2f8b92e (patch)
tree15123a8fce574f44da4574f0cd86baf9f9cfeff7 /drivers/hwmon/sl28cpld-hwmon.c
parent11c1dff58c65ee6a5cbfa19af049ee8af01a91c6 (diff)
downloadlinux-7f46e9883f530068473f2adae93d3cf4a2f8b92e.tar.xz
hwmon: sl28cpld: constify pointers to hwmon_channel_info
Statically allocated array of pointed to hwmon_channel_info can be made const for safety. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/sl28cpld-hwmon.c')
-rw-r--r--drivers/hwmon/sl28cpld-hwmon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/sl28cpld-hwmon.c b/drivers/hwmon/sl28cpld-hwmon.c
index 9ce4899a81a5..e020f25c9300 100644
--- a/drivers/hwmon/sl28cpld-hwmon.c
+++ b/drivers/hwmon/sl28cpld-hwmon.c
@@ -67,7 +67,7 @@ static int sl28cpld_hwmon_read(struct device *dev,
return 0;
}
-static const struct hwmon_channel_info *sl28cpld_hwmon_info[] = {
+static const struct hwmon_channel_info * const sl28cpld_hwmon_info[] = {
HWMON_CHANNEL_INFO(fan, HWMON_F_INPUT),
NULL
};