diff options
author | Kim Phillips | 2008-06-17 17:45:22 -0500 |
---|---|---|
committer | Andrew Fleming-AFLEMING | 2008-07-14 17:01:34 -0500 |
commit | 06b4186c10204b6683edb047ac5f506fb0ce0937 (patch) | |
tree | 838d69c6c59cc09bf13e96b77349cac0d8b5588e | |
parent | 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78 (diff) |
mpc85xx: use IS_E_PROCESSOR macro
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
-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 0d50549f2d8..bde8e56703c 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"); |