diff options
| -rw-r--r-- | arch/mips/include/asm/spram.h | 10 | ||||
| -rw-r--r-- | arch/mips/kernel/cpu-probe.c | 8 | ||||
| -rw-r--r-- | arch/mips/kernel/spram.c | 4 |
3 files changed, 12 insertions, 10 deletions
diff --git a/arch/mips/include/asm/spram.h b/arch/mips/include/asm/spram.h new file mode 100644 index 000000000000..0b89006e4907 --- /dev/null +++ b/arch/mips/include/asm/spram.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef _MIPS_SPRAM_H | ||
| 2 | #define _MIPS_SPRAM_H | ||
| 3 | |||
| 4 | #ifdef CONFIG_CPU_MIPSR2 | ||
| 5 | extern __init void spram_config(void); | ||
| 6 | #else | ||
| 7 | static inline void spram_config(void) { }; | ||
| 8 | #endif /* CONFIG_CPU_MIPSR2 */ | ||
| 9 | |||
| 10 | #endif /* _MIPS_SPRAM_H */ | ||
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index f709657e4dcd..7a51866068a4 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #include <asm/mipsregs.h> | 23 | #include <asm/mipsregs.h> |
| 24 | #include <asm/system.h> | 24 | #include <asm/system.h> |
| 25 | #include <asm/watch.h> | 25 | #include <asm/watch.h> |
| 26 | 26 | #include <asm/spram.h> | |
| 27 | /* | 27 | /* |
| 28 | * Not all of the MIPS CPUs have the "wait" instruction available. Moreover, | 28 | * Not all of the MIPS CPUs have the "wait" instruction available. Moreover, |
| 29 | * the implementation of the "wait" feature differs between CPU families. This | 29 | * the implementation of the "wait" feature differs between CPU families. This |
| @@ -711,12 +711,6 @@ static void __cpuinit decode_configs(struct cpuinfo_mips *c) | |||
| 711 | mips_probe_watch_registers(c); | 711 | mips_probe_watch_registers(c); |
| 712 | } | 712 | } |
| 713 | 713 | ||
| 714 | #ifdef CONFIG_CPU_MIPSR2 | ||
| 715 | extern void spram_config(void); | ||
| 716 | #else | ||
| 717 | static inline void spram_config(void) {} | ||
| 718 | #endif | ||
| 719 | |||
| 720 | static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) | 714 | static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) |
| 721 | { | 715 | { |
| 722 | decode_configs(c); | 716 | decode_configs(c); |
diff --git a/arch/mips/kernel/spram.c b/arch/mips/kernel/spram.c index 71b47376cf71..1821d12a6410 100644 --- a/arch/mips/kernel/spram.c +++ b/arch/mips/kernel/spram.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/ptrace.h> | 13 | #include <linux/ptrace.h> |
| 14 | #include <linux/stddef.h> | 14 | #include <linux/stddef.h> |
| 15 | 15 | ||
| 16 | #include <asm/cpu.h> | ||
| 17 | #include <asm/fpu.h> | 16 | #include <asm/fpu.h> |
| 18 | #include <asm/mipsregs.h> | 17 | #include <asm/mipsregs.h> |
| 19 | #include <asm/system.h> | 18 | #include <asm/system.h> |
| @@ -198,8 +197,7 @@ static __cpuinit void probe_spram(char *type, | |||
| 198 | offset += 2 * SPRAM_TAG_STRIDE; | 197 | offset += 2 * SPRAM_TAG_STRIDE; |
| 199 | } | 198 | } |
| 200 | } | 199 | } |
| 201 | 200 | void __cpuinit spram_config(void) | |
| 202 | __cpuinit void spram_config(void) | ||
| 203 | { | 201 | { |
| 204 | struct cpuinfo_mips *c = ¤t_cpu_data; | 202 | struct cpuinfo_mips *c = ¤t_cpu_data; |
| 205 | unsigned int config0; | 203 | unsigned int config0; |
