aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/lemote
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-07-28 06:46:15 -0400
committerRalf Baechle <ralf@linux-mips.org>2007-07-31 16:35:28 -0400
commit348c913f571dc1a0e7fd84d7206fc7ee983420df (patch)
treed08ae116332863b459bafffdf799c619c2c18a7c /arch/mips/lemote
parent3266c6a988a2d18ffe91fe7fd56d0d6cc13c341e (diff)
[MIPS] Fix build breakage due to duplicate cpu_clock definition
commit e436d80085133858bf2613a630365e8a0459fd58 Author: Ingo Molnar <mingo@elte.hu> Date: Thu Jul 19 21:28:35 2007 +0200 [PATCH] sched: implement cpu_clock(cpu) high-speed time source broke the build of several MIPS platforms which were already using the symbol cpu_clock for the own purposes. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/lemote')
-rw-r--r--arch/mips/lemote/lm2e/prom.c6
-rw-r--r--arch/mips/lemote/lm2e/setup.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/arch/mips/lemote/lm2e/prom.c b/arch/mips/lemote/lm2e/prom.c
index 67312d7acf2a..4e3132e47bee 100644
--- a/arch/mips/lemote/lm2e/prom.c
+++ b/arch/mips/lemote/lm2e/prom.c
@@ -23,7 +23,7 @@
23#include <asm/bootinfo.h> 23#include <asm/bootinfo.h>
24 24
25extern unsigned long bus_clock; 25extern unsigned long bus_clock;
26extern unsigned long cpu_clock; 26extern unsigned long cpu_clock_freq;
27extern unsigned int memsize, highmemsize; 27extern unsigned int memsize, highmemsize;
28extern int putDebugChar(unsigned char byte); 28extern int putDebugChar(unsigned char byte);
29 29
@@ -81,7 +81,7 @@ do { \
81 l = (long)*env; 81 l = (long)*env;
82 while (l != 0) { 82 while (l != 0) {
83 parse_even_earlier(bus_clock, "busclock", l); 83 parse_even_earlier(bus_clock, "busclock", l);
84 parse_even_earlier(cpu_clock, "cpuclock", l); 84 parse_even_earlier(cpu_clock_freq, "cpuclock", l);
85 parse_even_earlier(memsize, "memsize", l); 85 parse_even_earlier(memsize, "memsize", l);
86 parse_even_earlier(highmemsize, "highmemsize", l); 86 parse_even_earlier(highmemsize, "highmemsize", l);
87 env++; 87 env++;
@@ -91,7 +91,7 @@ do { \
91 memsize = 256; 91 memsize = 256;
92 92
93 pr_info("busclock=%ld, cpuclock=%ld,memsize=%d,highmemsize=%d\n", 93 pr_info("busclock=%ld, cpuclock=%ld,memsize=%d,highmemsize=%d\n",
94 bus_clock, cpu_clock, memsize, highmemsize); 94 bus_clock, cpu_clock_freq, memsize, highmemsize);
95} 95}
96 96
97void __init prom_free_prom_memory(void) 97void __init prom_free_prom_memory(void)
diff --git a/arch/mips/lemote/lm2e/setup.c b/arch/mips/lemote/lm2e/setup.c
index 0e4d1fa572b5..dbb801678fd9 100644
--- a/arch/mips/lemote/lm2e/setup.c
+++ b/arch/mips/lemote/lm2e/setup.c
@@ -58,7 +58,7 @@ extern void mips_reboot_setup(void);
58#define PTR_PAD(p) (p) 58#define PTR_PAD(p) (p)
59#endif 59#endif
60 60
61unsigned long cpu_clock; 61unsigned long cpu_clock_freq;
62unsigned long bus_clock; 62unsigned long bus_clock;
63unsigned int memsize; 63unsigned int memsize;
64unsigned int highmemsize = 0; 64unsigned int highmemsize = 0;
@@ -71,7 +71,7 @@ void __init plat_timer_setup(struct irqaction *irq)
71static void __init loongson2e_time_init(void) 71static void __init loongson2e_time_init(void)
72{ 72{
73 /* setup mips r4k timer */ 73 /* setup mips r4k timer */
74 mips_hpt_frequency = cpu_clock / 2; 74 mips_hpt_frequency = cpu_clock_freq / 2;
75} 75}
76 76
77static unsigned long __init mips_rtc_get_time(void) 77static unsigned long __init mips_rtc_get_time(void)