diff options
author | Gimcuan Hui <gimcuan@gmail.com> | 2017-11-05 01:06:19 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-11-08 06:58:31 -0500 |
commit | d13551d1c9010b063a147839e29503ff8c632342 (patch) | |
tree | e86ca3253dc52c40e04c2a485b772da855573717 /drivers/tty | |
parent | c100a3f132e4981d4b2b874657b390a137c6c32e (diff) |
tty: serial: jsm: add blank line after declarations
This patch fixes checkpatch.pl warning:
Missing a blank line after declarations.
Signed-off-by: Gimcuan Hui <gimcuan@gmail.com>
Acked-by: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/jsm/jsm_tty.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tty/serial/jsm/jsm_tty.c b/drivers/tty/serial/jsm/jsm_tty.c index 729d2a083a74..ed58dfc3d40e 100644 --- a/drivers/tty/serial/jsm/jsm_tty.c +++ b/drivers/tty/serial/jsm/jsm_tty.c | |||
@@ -124,6 +124,7 @@ static void jsm_tty_set_mctrl(struct uart_port *port, unsigned int mctrl) | |||
124 | static void jsm_tty_write(struct uart_port *port) | 124 | static void jsm_tty_write(struct uart_port *port) |
125 | { | 125 | { |
126 | struct jsm_channel *channel; | 126 | struct jsm_channel *channel; |
127 | |||
127 | channel = container_of(port, struct jsm_channel, uart_port); | 128 | channel = container_of(port, struct jsm_channel, uart_port); |
128 | channel->ch_bd->bd_ops->copy_data_from_queue_to_uart(channel); | 129 | channel->ch_bd->bd_ops->copy_data_from_queue_to_uart(channel); |
129 | } | 130 | } |