aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/kernel/cpu/cpufreq/powernow-k7.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/kernel/cpu/cpufreq/powernow-k7.c')
-rw-r--r--arch/i386/kernel/cpu/cpufreq/powernow-k7.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/powernow-k7.c b/arch/i386/kernel/cpu/cpufreq/powernow-k7.c
index 54382760983a..d98529c93a1c 100644
--- a/arch/i386/kernel/cpu/cpufreq/powernow-k7.c
+++ b/arch/i386/kernel/cpu/cpufreq/powernow-k7.c
@@ -68,7 +68,7 @@ union powernow_acpi_control_t {
68 68
69#ifdef CONFIG_CPU_FREQ_DEBUG 69#ifdef CONFIG_CPU_FREQ_DEBUG
70/* divide by 1000 to get VCore voltage in V. */ 70/* divide by 1000 to get VCore voltage in V. */
71static int mobile_vid_table[32] = { 71static const int mobile_vid_table[32] = {
72 2000, 1950, 1900, 1850, 1800, 1750, 1700, 1650, 72 2000, 1950, 1900, 1850, 1800, 1750, 1700, 1650,
73 1600, 1550, 1500, 1450, 1400, 1350, 1300, 0, 73 1600, 1550, 1500, 1450, 1400, 1350, 1300, 0,
74 1275, 1250, 1225, 1200, 1175, 1150, 1125, 1100, 74 1275, 1250, 1225, 1200, 1175, 1150, 1125, 1100,
@@ -77,7 +77,7 @@ static int mobile_vid_table[32] = {
77#endif 77#endif
78 78
79/* divide by 10 to get FID. */ 79/* divide by 10 to get FID. */
80static int fid_codes[32] = { 80static const int fid_codes[32] = {
81 110, 115, 120, 125, 50, 55, 60, 65, 81 110, 115, 120, 125, 50, 55, 60, 65,
82 70, 75, 80, 85, 90, 95, 100, 105, 82 70, 75, 80, 85, 90, 95, 100, 105,
83 30, 190, 40, 200, 130, 135, 140, 210, 83 30, 190, 40, 200, 130, 135, 140, 210,
@@ -647,7 +647,7 @@ static struct freq_attr* powernow_table_attr[] = {
647 NULL, 647 NULL,
648}; 648};
649 649
650static struct cpufreq_driver powernow_driver = { 650static const struct cpufreq_driver powernow_driver = {
651 .verify = powernow_verify, 651 .verify = powernow_verify,
652 .target = powernow_target, 652 .target = powernow_target,
653 .get = powernow_get, 653 .get = powernow_get,