diff options
author | Rafal Jaworowski <raj@pollux.denx.de> | 2005-10-17 02:39:53 +0200 |
---|---|---|
committer | Rafal Jaworowski <raj@pollux.denx.de> | 2005-10-17 02:39:53 +0200 |
commit | 6902df56a0b493f369153b09d11afcd74a580561 (patch) | |
tree | 1f52eec48325cca757cf2ea3d65a448cbecaec9d /cpu/mpc83xx/cpu.c | |
parent | 326bf40fb7a4862da5dcc4e166721633b3422835 (diff) | |
download | u-boot-imx-6902df56a0b493f369153b09d11afcd74a580561.zip u-boot-imx-6902df56a0b493f369153b09d11afcd74a580561.tar.gz u-boot-imx-6902df56a0b493f369153b09d11afcd74a580561.tar.bz2 |
Add PCI support for the TQM834x board.
Diffstat (limited to 'cpu/mpc83xx/cpu.c')
-rw-r--r-- | cpu/mpc83xx/cpu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpu/mpc83xx/cpu.c b/cpu/mpc83xx/cpu.c index 7a1f939..8c9b515 100644 --- a/cpu/mpc83xx/cpu.c +++ b/cpu/mpc83xx/cpu.c @@ -60,7 +60,9 @@ int checkcpu(void) puts("Rev: Unknown\n"); return -1; /* Not sure what this is */ } - printf("Rev: %02x at %s MHz\n",pvr & 0x0000FFFF, strmhz(buf, clock)); + printf("Rev: %d.%d at %s MHz\n", (pvr & 0xf0) >> 4, + (pvr & 0x0f), strmhz(buf, clock)); + return 0; } |