From: juhosg Date: Fri, 12 Nov 2010 18:50:47 +0000 (+0000) Subject: ar71xx: fix trailing statements location X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/6be076283d2e559a33f5744b420c30d56f9930d6 ar71xx: fix trailing statements location Signed-off-by: Arnaud Lacombe git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23976 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/ar71xx.c b/target/linux/ar71xx/files/arch/mips/ar71xx/ar71xx.c index 5d05562de..6c88985cc 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/ar71xx.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/ar71xx.c @@ -157,10 +157,12 @@ EXPORT_SYMBOL_GPL(ar71xx_device_stopped); void ar71xx_ddr_flush(u32 reg) { ar71xx_ddr_wr(reg, 1); - while ((ar71xx_ddr_rr(reg) & 0x1)); + while ((ar71xx_ddr_rr(reg) & 0x1)) + ; ar71xx_ddr_wr(reg, 1); - while ((ar71xx_ddr_rr(reg) & 0x1)); + while ((ar71xx_ddr_rr(reg) & 0x1)) + ; } EXPORT_SYMBOL_GPL(ar71xx_ddr_flush); diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/early_printk.c b/target/linux/ar71xx/files/arch/mips/ar71xx/early_printk.c index 4661d970b..76f69c562 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/early_printk.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/early_printk.c @@ -23,8 +23,10 @@ void prom_putchar(unsigned char ch) { - while (((UART_READ(UART_LSR)) & UART_LSR_THRE) == 0); + while (((UART_READ(UART_LSR)) & UART_LSR_THRE) == 0) + ; UART_WRITE(UART_TX, ch); - while (((UART_READ(UART_LSR)) & UART_LSR_THRE) == 0); + while (((UART_READ(UART_LSR)) & UART_LSR_THRE) == 0) + ; }