gic: fixed compilation error in GICv2 wait for interrupt macro

a hexadicemal value was missing the "0x" prefix which caused
	assembler error

Signed-off-by: Yehuda Yitschak <yehuday@marvell.com>
This commit is contained in:
Yehuda Yitschak 2014-10-27 14:07:16 +02:00 committed by Albert ARIBAUD
parent b81fa615df
commit 59a9cfdd16

View File

@ -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