From mboxrd@z Thu Jan 1 00:00:00 1970 From: Albert ARIBAUD Date: Tue, 28 Oct 2014 07:58:24 +0100 Subject: [U-Boot] [PATCH] gic: fixed compilation error in GICv2 wait for interrupt macro In-Reply-To: <1414411636-23806-1-git-send-email-yehuday@marvell.com> References: <1414411636-23806-1-git-send-email-yehuday@marvell.com> Message-ID: <20141028075824.28fa72ae@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 Yehuda, On Mon, 27 Oct 2014 14:07:16 +0200, Yehuda Yitschak wrote: > a hexadicemal value was missing the "0x" prefix which caused > assembler error > > Signed-off-by: Yehuda Yitschak > --- > 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.1.2 Applied to u-boot-arm/master (as a preventive bug fix), thanks! Amicalement, -- Albert.