summaryrefslogtreecommitdiff
path: root/cpu
diff options
context:
space:
mode:
authorKim Phillips <kim.phillips@freescale.com>2008-06-17 22:45:22 (GMT)
committerAndrew Fleming-AFLEMING <afleming@freescale.com>2008-07-14 22:01:34 (GMT)
commit06b4186c10204b6683edb047ac5f506fb0ce0937 (patch)
tree838d69c6c59cc09bf13e96b77349cac0d8b5588e /cpu
parent6b70ffb9d1b2e791161f3cf92937aa45b4a07b78 (diff)
downloadu-boot-fsl-qoriq-06b4186c10204b6683edb047ac5f506fb0ce0937.tar.xz
mpc85xx: use IS_E_PROCESSOR macro
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'cpu')
-rw-r--r--cpu/mpc85xx/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c
index 0d50549..bde8e56 100644
--- a/cpu/mpc85xx/cpu.c
+++ b/cpu/mpc85xx/cpu.c
@@ -97,7 +97,7 @@ int checkcpu (void)
if (cpu) {
puts(cpu->name);
- if (svr & 0x80000)
+ if (IS_E_PROCESSOR(svr))
puts("E");
} else {
puts("Unknown");