diff options
Diffstat (limited to 'drivers/cpufreq/powernow-k6.c')
| -rw-r--r-- | drivers/cpufreq/powernow-k6.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/cpufreq/powernow-k6.c b/drivers/cpufreq/powernow-k6.c index 62c6f2e5afce..49f120e1bc7b 100644 --- a/drivers/cpufreq/powernow-k6.c +++ b/drivers/cpufreq/powernow-k6.c | |||
| @@ -37,15 +37,15 @@ MODULE_PARM_DESC(bus_frequency, "Bus frequency in kHz"); | |||
| 37 | 37 | ||
| 38 | /* Clock ratio multiplied by 10 - see table 27 in AMD#23446 */ | 38 | /* Clock ratio multiplied by 10 - see table 27 in AMD#23446 */ |
| 39 | static struct cpufreq_frequency_table clock_ratio[] = { | 39 | static struct cpufreq_frequency_table clock_ratio[] = { |
| 40 | {60, /* 110 -> 6.0x */ 0}, | 40 | {0, 60, /* 110 -> 6.0x */ 0}, |
| 41 | {55, /* 011 -> 5.5x */ 0}, | 41 | {0, 55, /* 011 -> 5.5x */ 0}, |
| 42 | {50, /* 001 -> 5.0x */ 0}, | 42 | {0, 50, /* 001 -> 5.0x */ 0}, |
| 43 | {45, /* 000 -> 4.5x */ 0}, | 43 | {0, 45, /* 000 -> 4.5x */ 0}, |
| 44 | {40, /* 010 -> 4.0x */ 0}, | 44 | {0, 40, /* 010 -> 4.0x */ 0}, |
| 45 | {35, /* 111 -> 3.5x */ 0}, | 45 | {0, 35, /* 111 -> 3.5x */ 0}, |
| 46 | {30, /* 101 -> 3.0x */ 0}, | 46 | {0, 30, /* 101 -> 3.0x */ 0}, |
| 47 | {20, /* 100 -> 2.0x */ 0}, | 47 | {0, 20, /* 100 -> 2.0x */ 0}, |
| 48 | {0, CPUFREQ_TABLE_END} | 48 | {0, 0, CPUFREQ_TABLE_END} |
| 49 | }; | 49 | }; |
| 50 | 50 | ||
| 51 | static const u8 index_to_register[8] = { 6, 3, 1, 0, 2, 7, 5, 4 }; | 51 | static const u8 index_to_register[8] = { 6, 3, 1, 0, 2, 7, 5, 4 }; |
