mirror of
https://github.com/torvalds/linux.git
synced 2025-11-30 23:16:01 +07:00
hwmon: k8temp: 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:
committed by
Guenter Roeck
parent
4dd50f3c1d
commit
55f4466382
@@ -118,7 +118,7 @@ static const struct hwmon_ops k8temp_ops = {
|
|||||||
.read = k8temp_read,
|
.read = k8temp_read,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct hwmon_channel_info *k8temp_info[] = {
|
static const struct hwmon_channel_info * const k8temp_info[] = {
|
||||||
HWMON_CHANNEL_INFO(temp,
|
HWMON_CHANNEL_INFO(temp,
|
||||||
HWMON_T_INPUT, HWMON_T_INPUT, HWMON_T_INPUT, HWMON_T_INPUT),
|
HWMON_T_INPUT, HWMON_T_INPUT, HWMON_T_INPUT, HWMON_T_INPUT),
|
||||||
NULL
|
NULL
|
||||||
|
|||||||
Reference in New Issue
Block a user