Remove whitespace.
[coreboot.git] / src / lib / uart8250.c
index fe8ed705d651341f1a6806a3e959358d3aa39115..261b90f2b219549ce81d729519433af1a2f376f8 100644 (file)
@@ -75,7 +75,7 @@ unsigned char uart8250_rx_byte(unsigned base_port)
 {
        unsigned long int i = SINGLE_CHAR_TIMEOUT;
        while (i-- && !uart8250_can_rx_byte(base_port));
-       
+
        if (i)
                return inb(base_port + UART_RBR);
        else