Commit 9303ac15 authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman

serial: Samsung: Silence some checkpatch errors and warnings

Fixes the following errors and warnings:
ERROR: trailing whitespace
ERROR: return is not a function, parentheses are not required
WARNING: suspect code indent for conditional statements (32, 36)
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Acked-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d20925e1
...@@ -82,7 +82,7 @@ static inline const char *s3c24xx_serial_portname(struct uart_port *port) ...@@ -82,7 +82,7 @@ static inline const char *s3c24xx_serial_portname(struct uart_port *port)
static int s3c24xx_serial_txempty_nofifo(struct uart_port *port) static int s3c24xx_serial_txempty_nofifo(struct uart_port *port)
{ {
return (rd_regl(port, S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXE); return rd_regl(port, S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXE;
} }
/* /*
...@@ -268,7 +268,7 @@ s3c24xx_serial_rx_chars(int irq, void *dev_id) ...@@ -268,7 +268,7 @@ s3c24xx_serial_rx_chars(int irq, void *dev_id)
dbg("break!\n"); dbg("break!\n");
port->icount.brk++; port->icount.brk++;
if (uart_handle_break(port)) if (uart_handle_break(port))
goto ignore_char; goto ignore_char;
} }
if (uerstat & S3C2410_UERSTAT_FRAME) if (uerstat & S3C2410_UERSTAT_FRAME)
...@@ -1129,7 +1129,7 @@ static int s3c24xx_serial_init_port(struct s3c24xx_uart_port *ourport, ...@@ -1129,7 +1129,7 @@ static int s3c24xx_serial_init_port(struct s3c24xx_uart_port *ourport,
ourport->rx_irq = ret; ourport->rx_irq = ret;
ourport->tx_irq = ret + 1; ourport->tx_irq = ret + 1;
} }
ret = platform_get_irq(platdev, 1); ret = platform_get_irq(platdev, 1);
if (ret > 0) if (ret > 0)
ourport->tx_irq = ret; ourport->tx_irq = ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment