diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2008-06-17 17:45:22 -0500 |
---|---|---|
committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2008-07-14 17:01:34 -0500 |
commit | 06b4186c10204b6683edb047ac5f506fb0ce0937 (patch) | |
tree | 838d69c6c59cc09bf13e96b77349cac0d8b5588e /cpu | |
parent | 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78 (diff) | |
download | u-boot-imx-06b4186c10204b6683edb047ac5f506fb0ce0937.zip u-boot-imx-06b4186c10204b6683edb047ac5f506fb0ce0937.tar.gz u-boot-imx-06b4186c10204b6683edb047ac5f506fb0ce0937.tar.bz2 |
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.c | 2 |
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"); |