Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / cpu / x86 / smm / smiutil.c
index 9a2dfa599e206c579435a5f8c1b8882184e889d2..980ea69f51d070c37ce99afa7402aaea46eb512f 100644 (file)
@@ -72,14 +72,14 @@ static int uart_can_tx_byte(void)
 
 static void uart_wait_to_tx_byte(void)
 {
-       while(!uart_can_tx_byte()) 
+       while(!uart_can_tx_byte())
        ;
 }
 
 static void uart_wait_until_sent(void)
 {
        while(!(inb(CONFIG_TTYS0_BASE + UART_LSR) & 0x40))
-       ; 
+       ;
 }
 
 static void uart_tx_byte(unsigned char data)