From: Kim Phillips Date: Tue, 17 Jun 2008 22:45:22 +0000 (-0500) Subject: mpc85xx: use IS_E_PROCESSOR macro X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=06b4186c10204b6683edb047ac5f506fb0ce0937;p=project%2Fbcm63xx%2Fu-boot.git mpc85xx: use IS_E_PROCESSOR macro Signed-off-by: Kim Phillips --- diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c index 0d50549f2d..bde8e56703 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");