From: Tony Lindgren Date: Wed, 20 Sep 2006 12:11:24 +0000 (+0300) Subject: ARM: Fix typo in ARM11 DCC X-Git-Tag: v2.6.18-omap1~61 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=0ce750345cca91eb5c25c12df8e37da51518a093;p=linux-2.6-omap-h63xx.git ARM: Fix typo in ARM11 DCC Fix typo in ARM11 DCC Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/boot/compressed/misc.c b/arch/arm/boot/compressed/misc.c index 39184563b42..283891c736c 100644 --- a/arch/arm/boot/compressed/misc.c +++ b/arch/arm/boot/compressed/misc.c @@ -42,7 +42,7 @@ static void icedcc_putc(int ch) return; asm volatile ("mrc p14, 0, %0, c0, c1, 0" : "=r" (status)); - } while (status & 29); + } while (status & (1 << 29)); asm("mcr p14, 0, %0, c0, c5, 0" : : "r" (ch)); }