diff options
Diffstat (limited to 'arch/mips/lemote/lm2e/prom.c')
-rw-r--r-- | arch/mips/lemote/lm2e/prom.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/arch/mips/lemote/lm2e/prom.c b/arch/mips/lemote/lm2e/prom.c index 67312d7acf2a..3efb1cf111f2 100644 --- a/arch/mips/lemote/lm2e/prom.c +++ b/arch/mips/lemote/lm2e/prom.c | |||
@@ -15,15 +15,11 @@ | |||
15 | * option) any later version. | 15 | * option) any later version. |
16 | */ | 16 | */ |
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/mm.h> | ||
19 | #include <linux/sched.h> | ||
20 | #include <linux/bootmem.h> | 18 | #include <linux/bootmem.h> |
21 | |||
22 | #include <asm/addrspace.h> | ||
23 | #include <asm/bootinfo.h> | 19 | #include <asm/bootinfo.h> |
24 | 20 | ||
25 | extern unsigned long bus_clock; | 21 | extern unsigned long bus_clock; |
26 | extern unsigned long cpu_clock; | 22 | extern unsigned long cpu_clock_freq; |
27 | extern unsigned int memsize, highmemsize; | 23 | extern unsigned int memsize, highmemsize; |
28 | extern int putDebugChar(unsigned char byte); | 24 | extern int putDebugChar(unsigned char byte); |
29 | 25 | ||
@@ -81,7 +77,7 @@ do { \ | |||
81 | l = (long)*env; | 77 | l = (long)*env; |
82 | while (l != 0) { | 78 | while (l != 0) { |
83 | parse_even_earlier(bus_clock, "busclock", l); | 79 | parse_even_earlier(bus_clock, "busclock", l); |
84 | parse_even_earlier(cpu_clock, "cpuclock", l); | 80 | parse_even_earlier(cpu_clock_freq, "cpuclock", l); |
85 | parse_even_earlier(memsize, "memsize", l); | 81 | parse_even_earlier(memsize, "memsize", l); |
86 | parse_even_earlier(highmemsize, "highmemsize", l); | 82 | parse_even_earlier(highmemsize, "highmemsize", l); |
87 | env++; | 83 | env++; |
@@ -91,7 +87,7 @@ do { \ | |||
91 | memsize = 256; | 87 | memsize = 256; |
92 | 88 | ||
93 | pr_info("busclock=%ld, cpuclock=%ld,memsize=%d,highmemsize=%d\n", | 89 | pr_info("busclock=%ld, cpuclock=%ld,memsize=%d,highmemsize=%d\n", |
94 | bus_clock, cpu_clock, memsize, highmemsize); | 90 | bus_clock, cpu_clock_freq, memsize, highmemsize); |
95 | } | 91 | } |
96 | 92 | ||
97 | void __init prom_free_prom_memory(void) | 93 | void __init prom_free_prom_memory(void) |