ar71xx: fix trailing statements location
[openwrt/openwrt.git] / target / linux / ar71xx / files / arch / mips / ar71xx / early_printk.c
index 4661d970b0f377b2db2d7aa0c36ee3e946d9cb7f..76f69c562b8c4d563e95938376854cc6e82427a2 100644 (file)
 
 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)
+               ;
 }