mirror of
https://github.com/torvalds/linux.git
synced 2025-11-02 17:49:03 +02:00
hwmon: tmp464: 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>
This commit is contained in:
parent
1198c51f8f
commit
98bc085cae
1 changed files with 1 additions and 1 deletions
|
|
@ -589,7 +589,7 @@ static const struct hwmon_ops tmp464_ops = {
|
|||
.write = tmp464_write,
|
||||
};
|
||||
|
||||
static const struct hwmon_channel_info *tmp464_info[] = {
|
||||
static const struct hwmon_channel_info * const tmp464_info[] = {
|
||||
HWMON_CHANNEL_INFO(chip,
|
||||
HWMON_C_UPDATE_INTERVAL),
|
||||
HWMON_CHANNEL_INFO(temp,
|
||||
|
|
|
|||
Loading…
Reference in a new issue