diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2023-04-06 23:30:31 +0300 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2023-04-19 17:08:37 +0300 |
commit | c70164adbbdd15bc793bd4eed776ec4752dced82 (patch) | |
tree | 523d3961697219b3bfb0a4abcd877303d95865b0 /drivers/hwmon/max31730.c | |
parent | 2b1aec842ee248b2320cdaeea23c9ce6d4c3ea58 (diff) | |
download | linux-c70164adbbdd15bc793bd4eed776ec4752dced82.tar.xz |
hwmon: max31730: 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/max31730.c')
-rw-r--r-- | drivers/hwmon/max31730.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/max31730.c b/drivers/hwmon/max31730.c index 746a767c9fc6..924333d89ce4 100644 --- a/drivers/hwmon/max31730.c +++ b/drivers/hwmon/max31730.c @@ -248,7 +248,7 @@ static umode_t max31730_is_visible(const void *data, return 0; } -static const struct hwmon_channel_info *max31730_info[] = { +static const struct hwmon_channel_info * const max31730_info[] = { HWMON_CHANNEL_INFO(chip, HWMON_C_REGISTER_TZ), HWMON_CHANNEL_INFO(temp, |