diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2008-06-17 17:45:27 -0500 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-06-25 16:34:29 -0500 |
commit | 4890246a2c5df90a74e2941e3673a49bbd36aee9 (patch) | |
tree | 53ac8c61947f07317ab21df64bdc01a49cd2c33c /include/asm-ppc | |
parent | 914f58c5766860373a7d232e961cee5a4b54a55b (diff) |
mpc83xx: move CPU_TYPE_ENTRY over to processor.h
to avoid this:
cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
In file included from cpu.c:33:
/home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'include/asm-ppc')
-rw-r--r-- | include/asm-ppc/processor.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asm-ppc/processor.h b/include/asm-ppc/processor.h index 5b506791a77..10fd478baba 100644 --- a/include/asm-ppc/processor.h +++ b/include/asm-ppc/processor.h @@ -970,8 +970,15 @@ struct cpu_type { struct cpu_type *identify_cpu(u32 ver); +#if defined(CONFIG_MPC85xx) #define CPU_TYPE_ENTRY(n, v) \ { .name = #n, .soc_ver = SVR_##v, } +#else +#if defined(CONFIG_MPC83XX) +#define CPU_TYPE_ENTRY(x) {#x, SPR_##x} +#endif +#endif + #ifndef CONFIG_MACH_SPECIFIC extern int _machine; |