diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-08-24 09:14:16 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-09-29 19:01:05 -0500 |
commit | a5986432679205df5f80f7699f7853a0e7e5a509 (patch) | |
tree | ea3cc736c7b9409708769bda66d9ae0c8f4a3277 /arch/powerpc/cpu/mpc85xx | |
parent | 5471370b43382907eee5034880967331cd1b7aec (diff) | |
download | u-boot-imx-a5986432679205df5f80f7699f7853a0e7e5a509.zip u-boot-imx-a5986432679205df5f80f7699f7853a0e7e5a509.tar.gz u-boot-imx-a5986432679205df5f80f7699f7853a0e7e5a509.tar.bz2 |
powerpc/85xx: Cleanup how SVR_MAJ() is defined on MPC8536
The MPC8536 seems to use only 3 bits for the major revision field in the
SVR rather than the 4 bits used by all other processors. The most
significant bit is used as a mfg code on MPC8536.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cpu.c b/arch/powerpc/cpu/mpc85xx/cpu.c index f51829e..49c0551 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu.c +++ b/arch/powerpc/cpu/mpc85xx/cpu.c @@ -69,9 +69,6 @@ int checkcpu (void) svr = get_svr(); major = SVR_MAJ(svr); -#ifdef CONFIG_MPC8536 - major &= 0x7; /* the msb of this nibble is a mfg code */ -#endif minor = SVR_MIN(svr); if (cpu_numcores() > 1) { |