Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: phy: aquantia: 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>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://lore.kernel.org/r/20230407145911.79642-3-krzysztof.kozlowski@linaro.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Krzysztof Kozlowski and committed by
Jakub Kicinski
234d79a5 bc1585f6

+1 -1
+1 -1
drivers/net/phy/aquantia_hwmon.c
··· 210 210 .config = aqr_hwmon_temp_config, 211 211 }; 212 212 213 - static const struct hwmon_channel_info *aqr_hwmon_info[] = { 213 + static const struct hwmon_channel_info * const aqr_hwmon_info[] = { 214 214 &aqr_hwmon_chip, 215 215 &aqr_hwmon_temp, 216 216 NULL,