From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Herring Date: Sun, 2 Dec 2012 21:06:22 -0600 Subject: [U-Boot] [PATCH 2/2] ARM: highbank: use wfi macro instead of inline asm In-Reply-To: <1354503982-1124-1-git-send-email-robherring2@gmail.com> References: <1354503982-1124-1-git-send-email-robherring2@gmail.com> Message-ID: <1354503982-1124-2-git-send-email-robherring2@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Rob Herring Older compilers don't recognize v7 wfi instruction, so use wfi macro to fix builds on old compilers. Signed-off-by: Rob Herring --- board/highbank/highbank.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/board/highbank/highbank.c b/board/highbank/highbank.c index f41bf05..09cd45d 100644 --- a/board/highbank/highbank.c +++ b/board/highbank/highbank.c @@ -88,5 +88,6 @@ void dram_init_banksize(void) void reset_cpu(ulong addr) { writel(HB_PWR_HARD_RESET, HB_SREG_A9_PWR_REQ); - asm(" wfi"); + + wfi(); } -- 1.7.10.4