[adm5120] cleanup files using checkpatch.pl
[openwrt.git] / target / linux / adm5120 / files / arch / mips / adm5120 / common / early-printk.c
index 6aff147..d900712 100644 (file)
@@ -23,7 +23,9 @@
 
 void __init prom_putchar(char ch)
 {
-       while ((UART_READ(UART_REG_FLAG) & UART_FLAG_TXFE) == 0);
+       while ((UART_READ(UART_REG_FLAG) & UART_FLAG_TXFE) == 0)
+               ;
        UART_WRITE(UART_REG_DATA, ch);
-       while ((UART_READ(UART_REG_FLAG) & UART_FLAG_TXFE) == 0);
+       while ((UART_READ(UART_REG_FLAG) & UART_FLAG_TXFE) == 0)
+               ;
 }
This page took 0.029169 seconds and 4 git commands to generate.