summaryrefslogtreecommitdiffstats
path: root/cpu/ppc4xx/cpu.c
diff options
context:
space:
mode:
authorstroese <stroese>2005-04-07 05:33:41 +0000
committerstroese <stroese>2005-04-07 05:33:41 +0000
commit0a7c5391a0a881cef208d286e6c9d3ebe5851b94 (patch)
treedecd42c7a345e8c006cb1424aef1d2de6f249848 /cpu/ppc4xx/cpu.c
parent68e0236f7e54f2d5ad31a296bc10a5a0db2880b0 (diff)
downloadbarebox-0a7c5391a0a881cef208d286e6c9d3ebe5851b94.tar.gz
barebox-0a7c5391a0a881cef208d286e6c9d3ebe5851b94.tar.xz
Add PPC440GX Revision C
Diffstat (limited to 'cpu/ppc4xx/cpu.c')
-rw-r--r--cpu/ppc4xx/cpu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c
index cdb503965b..06acb8162e 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