diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2023-04-06 22:35:29 +0200 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2023-04-19 16:08:37 +0200 |
commit | 98ce1fc134ef4450c798a9e198261b6d0b9b7cb2 (patch) | |
tree | 77f992bb5465a0587c63c836b5b2bdc2f4da150e /drivers/hwmon/nzxt-smart2.c | |
parent | hwmon: ntc_thermistor: constify pointers to hwmon_channel_info (diff) | |
download | linux-98ce1fc134ef4450c798a9e198261b6d0b9b7cb2.tar.xz linux-98ce1fc134ef4450c798a9e198261b6d0b9b7cb2.zip |
hwmon: nzxt: 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/nzxt-smart2.c')
-rw-r--r-- | drivers/hwmon/nzxt-smart2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/nzxt-smart2.c b/drivers/hwmon/nzxt-smart2.c index e5edf8071f39..7aa586eb74be 100644 --- a/drivers/hwmon/nzxt-smart2.c +++ b/drivers/hwmon/nzxt-smart2.c @@ -663,7 +663,7 @@ static const struct hwmon_ops nzxt_smart2_hwmon_ops = { .write = nzxt_smart2_hwmon_write, }; -static const struct hwmon_channel_info *nzxt_smart2_channel_info[] = { +static const struct hwmon_channel_info * const nzxt_smart2_channel_info[] = { HWMON_CHANNEL_INFO(fan, HWMON_F_INPUT | HWMON_F_LABEL, HWMON_F_INPUT | HWMON_F_LABEL, HWMON_F_INPUT | HWMON_F_LABEL), |