summaryrefslogtreecommitdiffstats
path: root/cpu/mpc83xx/cpu.c
diff options
context:
space:
mode:
authorRafal Jaworowski <raj@pollux.denx.de>2005-10-17 02:39:53 +0200
committerRafal Jaworowski <raj@pollux.denx.de>2005-10-17 02:39:53 +0200
commit6902df56a0b493f369153b09d11afcd74a580561 (patch)
tree1f52eec48325cca757cf2ea3d65a448cbecaec9d /cpu/mpc83xx/cpu.c
parent326bf40fb7a4862da5dcc4e166721633b3422835 (diff)
downloadtalos-obmc-uboot-6902df56a0b493f369153b09d11afcd74a580561.tar.gz
talos-obmc-uboot-6902df56a0b493f369153b09d11afcd74a580561.zip
Add PCI support for the TQM834x board.
Diffstat (limited to 'cpu/mpc83xx/cpu.c')
-rw-r--r--cpu/mpc83xx/cpu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpu/mpc83xx/cpu.c b/cpu/mpc83xx/cpu.c
index 7a1f939ba0..8c9b515fa5 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;
}
OpenPOWER on IntegriCloud