mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00: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:
parent
4dd50f3c1d
commit
55f4466382
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue