diff options
author | Matthias Fuchs <matthias.fuchs@esd.eu> | 2013-08-07 12:10:38 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-08-20 11:35:24 -0400 |
commit | 3fb858891273945ce2238e6d4dac3363a1fb0853 (patch) | |
tree | ee86943cebf490244fed648f69425438c3c39b95 /arch/powerpc/cpu/ppc4xx/cpu.c | |
parent | fb8f4fd3af6602320525894964ea5acd42fe51b8 (diff) | |
download | u-boot-imx-3fb858891273945ce2238e6d4dac3363a1fb0853.zip u-boot-imx-3fb858891273945ce2238e6d4dac3363a1fb0853.tar.gz u-boot-imx-3fb858891273945ce2238e6d4dac3363a1fb0853.tar.bz2 |
ppc4xx: Remove support for PPC405CR CPUs
This patch removes support for the APM 405CR CPU.
This CPU is EOL and no board uses this chip.
Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
Diffstat (limited to 'arch/powerpc/cpu/ppc4xx/cpu.c')
-rw-r--r-- | arch/powerpc/cpu/ppc4xx/cpu.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/arch/powerpc/cpu/ppc4xx/cpu.c b/arch/powerpc/cpu/ppc4xx/cpu.c index fe05098..5cebafd 100644 --- a/arch/powerpc/cpu/ppc4xx/cpu.c +++ b/arch/powerpc/cpu/ppc4xx/cpu.c @@ -320,25 +320,9 @@ int checkcpu (void) puts("405GP Rev. D"); break; -#ifdef CONFIG_405GP - case PVR_405GP_RE: /* 405GP rev E and 405CR rev C have same PVR */ + case PVR_405GP_RE: puts("405GP Rev. E"); break; -#endif - - case PVR_405CR_RA: - puts("405CR Rev. A"); - break; - - case PVR_405CR_RB: - puts("405CR Rev. B"); - break; - -#ifdef CONFIG_405CR - case PVR_405CR_RC: /* 405GP rev E and 405CR rev C have same PVR */ - puts("405CR Rev. C"); - break; -#endif case PVR_405GPR_RB: puts("405GPr Rev. B"); |