diff options
author | Krzysztof Kozlowski <[email protected]> | 2023-04-07 16:59:11 +0200 |
---|---|---|
committer | Jakub Kicinski <[email protected]> | 2023-04-09 19:02:09 -0700 |
commit | 490fde262f17c5e4db27ee871cef970846e84599 (patch) | |
tree | 65ff95bc2d90f5b6e86ef8e159aa3c35a8dacd90 | |
parent | 0e76f1dcf487be6de4482e31076cb71e19c40c3d (diff) |
net: phy: sfp: 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 <[email protected]>
Reviewed-by: Andrew Lunn <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r-- | drivers/net/phy/sfp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/sfp.c b/drivers/net/phy/sfp.c index 5e515165ceab..cc9d29b71098 100644 --- a/drivers/net/phy/sfp.c +++ b/drivers/net/phy/sfp.c @@ -1382,7 +1382,7 @@ static const struct hwmon_ops sfp_hwmon_ops = { .read_string = sfp_hwmon_read_string, }; -static const struct hwmon_channel_info *sfp_hwmon_info[] = { +static const struct hwmon_channel_info * const sfp_hwmon_info[] = { HWMON_CHANNEL_INFO(chip, HWMON_C_REGISTER_TZ), HWMON_CHANNEL_INFO(in, |