diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-06-18 08:23:01 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-06-30 08:24:22 -0500 |
commit | 480f61790565d77432b70b4016b73f2ae27d530f (patch) | |
tree | 4c6db90668cfcd3c5d7254fda0329d562d4edbaa /include/asm-ppc | |
parent | 3e88337b225bf796f6df21d0a7f591530e9d4ce0 (diff) | |
download | u-boot-imx-480f61790565d77432b70b4016b73f2ae27d530f.zip u-boot-imx-480f61790565d77432b70b4016b73f2ae27d530f.tar.gz u-boot-imx-480f61790565d77432b70b4016b73f2ae27d530f.tar.bz2 |
86xx: Add CPU_TYPE_ENTRY support
Unify with 83xx and 85xx and use CPU_TYPE_ENTRY. We are going to use
this to convey the # of cores and DDR width in the near future so its
good to keep in sync.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/asm-ppc')
-rw-r--r-- | include/asm-ppc/processor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ppc/processor.h b/include/asm-ppc/processor.h index e7db1c6..65546ad 100644 --- a/include/asm-ppc/processor.h +++ b/include/asm-ppc/processor.h @@ -1021,7 +1021,7 @@ struct cpu_type { struct cpu_type *identify_cpu(u32 ver); -#if defined(CONFIG_MPC85xx) +#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) #define CPU_TYPE_ENTRY(n, v) \ { .name = #n, .soc_ver = SVR_##v, } #else |