From 2a6e03d7adeb8eb4794bd0639005cd70955ed311 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 10 Jun 2014 09:06:10 +0000 Subject: atheros: trailing statements fixes Move trailing statements to next line with indentation as suggested by checkpatch. Signed-off-by: Sergey Ryazanov git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41092 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/atheros/patches-3.10/101-early-printk-support.patch | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'target/linux/atheros/patches-3.10/101-early-printk-support.patch') diff --git a/target/linux/atheros/patches-3.10/101-early-printk-support.patch b/target/linux/atheros/patches-3.10/101-early-printk-support.patch index 2346e24918..3daa0117f7 100644 --- a/target/linux/atheros/patches-3.10/101-early-printk-support.patch +++ b/target/linux/atheros/patches-3.10/101-early-printk-support.patch @@ -1,6 +1,6 @@ --- /dev/null +++ b/arch/mips/ar231x/early_printk.c -@@ -0,0 +1,44 @@ +@@ -0,0 +1,46 @@ +/* + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive @@ -40,9 +40,11 @@ + base = (void __iomem *)(KSEG1ADDR(AR531X_UART0)); + } + -+ while ((prom_uart_rr(base, UART_LSR) & UART_LSR_THRE) == 0); ++ while ((prom_uart_rr(base, UART_LSR) & UART_LSR_THRE) == 0) ++ ; + prom_uart_wr(base, UART_TX, ch); -+ while ((prom_uart_rr(base, UART_LSR) & UART_LSR_THRE) == 0); ++ while ((prom_uart_rr(base, UART_LSR) & UART_LSR_THRE) == 0) ++ ; +} + --- a/arch/mips/ar231x/Makefile -- cgit v1.2.3