projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55f4466
)
hwmon: lan966x: constify pointers to hwmon_channel_info
author
Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org>
Thu, 6 Apr 2023 20:30:20 +0000
(22:30 +0200)
committer
Guenter Roeck
<linux@roeck-us.net>
Wed, 19 Apr 2023 14:08:36 +0000
(07:08 -0700)
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>
drivers/hwmon/lan966x-hwmon.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/lan966x-hwmon.c
b/drivers/hwmon/lan966x-hwmon.c
index f41df053ac319ba252b7e1a8d303365704c9de75..f8658359a0980521eb692473a3f0b0f93fff8be7 100644
(file)
--- a/
drivers/hwmon/lan966x-hwmon.c
+++ b/
drivers/hwmon/lan966x-hwmon.c
@@
-260,7
+260,7
@@
static umode_t lan966x_hwmon_is_visible(const void *data,
return mode;
}
-static const struct hwmon_channel_info *lan966x_hwmon_info[] = {
+static const struct hwmon_channel_info *
const
lan966x_hwmon_info[] = {
HWMON_CHANNEL_INFO(chip, HWMON_C_REGISTER_TZ),
HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT),
HWMON_CHANNEL_INFO(fan, HWMON_F_INPUT),