From mboxrd@z Thu Jan 1 00:00:00 1970 From: Albert ARIBAUD Date: Thu, 30 Oct 2014 17:58:35 +0100 Subject: [U-Boot] [PATCH] arm: fix a typo of instruction operand In-Reply-To: References: Message-ID: <20141030175835.5f227dcb@lilith> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello Jethro, On Thu, 30 Oct 2014 19:27:41 +0800, Jethro Hsu wrote: > From 79344f479bad75b47477dcc9768e564e02f72f59 Mon Sep 17 00:00:00 2001 > From: Jethro Hsu > Date: Thu, 30 Oct 2014 17:26:00 +0800 > Subject: [PATCH] arm: fix a typo of instruction operand > > To fix compile error caused by incorrect data format, > add "0x" to specify the operand value in hex mode. > > error message: > > arch/arm/lib/gic_64.S: Assembler messages: > arch/arm/lib/gic_64.S:187: Error: unexpected characters > following instruction at operand 3 -- `and w9,w9,#3ff' > > Change-Id: Ifef22c6d9a0f6a4255b3f2daf96bef08db6731dc > Signed-off-by: Jethro Hsu > Cc: Albert Aribaud > Cc: Arnab Basu > Cc: David Feng > Cc: York Sun > Cc: Scott Wood > --- > arch/arm/include/asm/macro.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/include/asm/macro.h b/arch/arm/include/asm/macro.h > index 541b443..1c8c425 100644 > --- a/arch/arm/include/asm/macro.h > +++ b/arch/arm/include/asm/macro.h > @@ -193,7 +193,7 @@ lr .req x30 > 0 : wfi > ldr \wreg2, [\xreg1, GICC_AIAR] > str \wreg2, [\xreg1, GICC_AEOIR] > - and \wreg2, \wreg2, #3ff > + and \wreg2, \wreg2, #0x3ff > cbnz \wreg2, 0b > .endm > #endif > -- > 1.8.3.1 This was fixed already in u-boot-arm/master (currently top of tree, soon to merge into u-boot/master. Amicalement, -- Albert.