From 31937531087fb47aa4a3a218e8114b32176f8683 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 20 Apr 2009 15:56:30 -0700 Subject: Global whitespace cleanup. Signed-off-by: H. Peter Anvin --- com32/gdbstub/serial.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'com32/gdbstub/serial.c') diff --git a/com32/gdbstub/serial.c b/com32/gdbstub/serial.c index 1c4d4b6f..2b9fc2ef 100644 --- a/com32/gdbstub/serial.c +++ b/com32/gdbstub/serial.c @@ -91,7 +91,7 @@ void serial_putc ( int ch ) { int status; for (;;) { status = uart_readb(UART_BASE + UART_LSR); - if (status & UART_LSR_THRE) { + if (status & UART_LSR_THRE) { /* TX buffer emtpy */ uart_writeb(ch, UART_BASE + UART_TBR); break; @@ -165,7 +165,7 @@ void serial_init ( void ) { goto out; } uart_writeb(lcs, UART_BASE + UART_LCR); - + /* disable interrupts */ uart_writeb(0x0, UART_BASE + UART_IER); -- cgit