diff options
author | Dave Jones <davej@redhat.com> | 2007-02-22 19:11:16 -0500 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2007-02-22 19:11:16 -0500 |
commit | bd5ab26a7d0cc834d846fe5dd7291f0aed3be72b (patch) | |
tree | 176ba366745c455a3907fd662dc9bddf15078fac /arch/i386/kernel/cpu/cpufreq/longhaul.c | |
parent | aeeddc1435c37fa3fc844f31d39c185b08de4158 (diff) | |
download | lwn-bd5ab26a7d0cc834d846fe5dd7291f0aed3be72b.tar.gz lwn-bd5ab26a7d0cc834d846fe5dd7291f0aed3be72b.zip |
[CPUFREQ] constify some data tables.
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch/i386/kernel/cpu/cpufreq/longhaul.c')
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/longhaul.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/longhaul.c b/arch/i386/kernel/cpu/cpufreq/longhaul.c index 4459026cec07..8cc6952d7772 100644 --- a/arch/i386/kernel/cpu/cpufreq/longhaul.c +++ b/arch/i386/kernel/cpu/cpufreq/longhaul.c @@ -61,8 +61,8 @@ static int cpu_model; static unsigned int numscales=16; static unsigned int fsb; -static struct mV_pos *vrm_mV_table; -static unsigned char *mV_vrm_table; +static const struct mV_pos *vrm_mV_table; +static const unsigned char *mV_vrm_table; struct f_msr { u8 vrm; u8 pos; |