diff options
author | stroese <stroese> | 2005-04-07 05:33:41 +0000 |
---|---|---|
committer | stroese <stroese> | 2005-04-07 05:33:41 +0000 |
commit | 0a7c5391a0a881cef208d286e6c9d3ebe5851b94 (patch) | |
tree | decd42c7a345e8c006cb1424aef1d2de6f249848 /cpu/ppc4xx/cpu.c | |
parent | 68e0236f7e54f2d5ad31a296bc10a5a0db2880b0 (diff) | |
download | u-boot-imx-0a7c5391a0a881cef208d286e6c9d3ebe5851b94.zip u-boot-imx-0a7c5391a0a881cef208d286e6c9d3ebe5851b94.tar.gz u-boot-imx-0a7c5391a0a881cef208d286e6c9d3ebe5851b94.tar.bz2 |
Add PPC440GX Revision C
Diffstat (limited to 'cpu/ppc4xx/cpu.c')
-rw-r--r-- | cpu/ppc4xx/cpu.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index cdb5039..06acb81 100644 --- a/cpu/ppc4xx/cpu.c +++ b/cpu/ppc4xx/cpu.c @@ -175,8 +175,11 @@ int checkcpu (void) case PVR_440GX_RB: puts("X Rev. B"); break; + case PVR_440GX_RC: + puts("X Rev. C"); + break; default: - printf ("UNKNOWN (PVR=%08x)", pvr); + printf (" UNKNOWN (PVR=%08x)", pvr); break; } #endif |