diff options
author | Stefan Roese <sr@denx.de> | 2006-11-28 16:09:24 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-11-28 16:09:24 +0100 |
commit | e732faec95a83cb468b4850ae807c8301dde8f6a (patch) | |
tree | f9cbce8bce55affa9bebd9f43df414ad944ffd67 /cpu/ppc4xx | |
parent | e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0 (diff) | |
download | u-boot-imx-e732faec95a83cb468b4850ae807c8301dde8f6a.zip u-boot-imx-e732faec95a83cb468b4850ae807c8301dde8f6a.tar.gz u-boot-imx-e732faec95a83cb468b4850ae807c8301dde8f6a.tar.bz2 |
[PATCH] PPC4xx: 440SP Rev. C detection added
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx')
-rw-r--r-- | cpu/ppc4xx/cpu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index 447383f..9c5c910 100644 --- a/cpu/ppc4xx/cpu.c +++ b/cpu/ppc4xx/cpu.c @@ -340,6 +340,10 @@ int checkcpu (void) puts("SP Rev. B"); break; + case PVR_440SP_RC: + puts("SP Rev. C"); + break; + case PVR_440SPe_RA: puts("SPe Rev. A"); break; |