diff options
author | Jan Beulich <JBeulich@suse.com> | 2012-07-30 05:33:00 -0400 |
---|---|---|
committer | Jean Delvare <khali@endymion.delvare> | 2012-07-30 05:33:00 -0400 |
commit | e273bd98c9170c33456c948df878a1d696ede959 (patch) | |
tree | 6e619c3503c636ed6fb241f25e8b59a8f5837166 /drivers/hwmon | |
parent | f7da9cdf45cbbad5029d4858dcbc0134e06084ed (diff) |
hwmon: struct x86_cpu_id arrays can be __initconst
... as being referenced from __init code only.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/coretemp.c | 2 | ||||
-rw-r--r-- | drivers/hwmon/via-cputemp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c index 637c51c11b44..faa16f80db9c 100644 --- a/drivers/hwmon/coretemp.c +++ b/drivers/hwmon/coretemp.c | |||
@@ -793,7 +793,7 @@ static struct notifier_block coretemp_cpu_notifier __refdata = { | |||
793 | .notifier_call = coretemp_cpu_callback, | 793 | .notifier_call = coretemp_cpu_callback, |
794 | }; | 794 | }; |
795 | 795 | ||
796 | static const struct x86_cpu_id coretemp_ids[] = { | 796 | static const struct x86_cpu_id __initconst coretemp_ids[] = { |
797 | { X86_VENDOR_INTEL, X86_FAMILY_ANY, X86_MODEL_ANY, X86_FEATURE_DTHERM }, | 797 | { X86_VENDOR_INTEL, X86_FAMILY_ANY, X86_MODEL_ANY, X86_FEATURE_DTHERM }, |
798 | {} | 798 | {} |
799 | }; | 799 | }; |
diff --git a/drivers/hwmon/via-cputemp.c b/drivers/hwmon/via-cputemp.c index 8689664ef03c..ee4ebc198a94 100644 --- a/drivers/hwmon/via-cputemp.c +++ b/drivers/hwmon/via-cputemp.c | |||
@@ -309,7 +309,7 @@ static struct notifier_block via_cputemp_cpu_notifier __refdata = { | |||
309 | .notifier_call = via_cputemp_cpu_callback, | 309 | .notifier_call = via_cputemp_cpu_callback, |
310 | }; | 310 | }; |
311 | 311 | ||
312 | static const struct x86_cpu_id cputemp_ids[] = { | 312 | static const struct x86_cpu_id __initconst cputemp_ids[] = { |
313 | { X86_VENDOR_CENTAUR, 6, 0xa, }, /* C7 A */ | 313 | { X86_VENDOR_CENTAUR, 6, 0xa, }, /* C7 A */ |
314 | { X86_VENDOR_CENTAUR, 6, 0xd, }, /* C7 D */ | 314 | { X86_VENDOR_CENTAUR, 6, 0xd, }, /* C7 D */ |
315 | { X86_VENDOR_CENTAUR, 6, 0xf, }, /* Nano */ | 315 | { X86_VENDOR_CENTAUR, 6, 0xf, }, /* Nano */ |