diff options
author | Konrad Zapalowicz <bergo.torino@gmail.com> | 2014-11-08 20:22:20 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-25 20:06:38 -0500 |
commit | 483e91a503064c104326a6bb55d4505ff467cd92 (patch) | |
tree | 177e6f80c8ad8e9dab9861d0a2f7e1afcdc10129 /drivers/tty/serial/jsm/jsm.h | |
parent | 5b05e2cbf5b38dfb2410d23adc26703fd37f84f9 (diff) |
serial: jsm: Fix unnecessary space before function ptr arguments
This commit deals with the checkpatch warning "Unnecessary space before
function pointer arguments".
Signed-off-by: Konrad Zapalowicz <bergo.torino@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/jsm/jsm.h')
-rw-r--r-- | drivers/tty/serial/jsm/jsm.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/tty/serial/jsm/jsm.h b/drivers/tty/serial/jsm/jsm.h index 39b325bdb835..0b79b87df47d 100644 --- a/drivers/tty/serial/jsm/jsm.h +++ b/drivers/tty/serial/jsm/jsm.h | |||
@@ -111,21 +111,21 @@ struct jsm_channel; | |||
111 | ************************************************************************/ | 111 | ************************************************************************/ |
112 | struct board_ops { | 112 | struct board_ops { |
113 | irq_handler_t intr; | 113 | irq_handler_t intr; |
114 | void (*uart_init) (struct jsm_channel *ch); | 114 | void (*uart_init)(struct jsm_channel *ch); |
115 | void (*uart_off) (struct jsm_channel *ch); | 115 | void (*uart_off)(struct jsm_channel *ch); |
116 | void (*param) (struct jsm_channel *ch); | 116 | void (*param)(struct jsm_channel *ch); |
117 | void (*assert_modem_signals) (struct jsm_channel *ch); | 117 | void (*assert_modem_signals)(struct jsm_channel *ch); |
118 | void (*flush_uart_write) (struct jsm_channel *ch); | 118 | void (*flush_uart_write)(struct jsm_channel *ch); |
119 | void (*flush_uart_read) (struct jsm_channel *ch); | 119 | void (*flush_uart_read)(struct jsm_channel *ch); |
120 | void (*disable_receiver) (struct jsm_channel *ch); | 120 | void (*disable_receiver)(struct jsm_channel *ch); |
121 | void (*enable_receiver) (struct jsm_channel *ch); | 121 | void (*enable_receiver)(struct jsm_channel *ch); |
122 | void (*send_break) (struct jsm_channel *ch); | 122 | void (*send_break)(struct jsm_channel *ch); |
123 | void (*clear_break) (struct jsm_channel *ch); | 123 | void (*clear_break)(struct jsm_channel *ch); |
124 | void (*send_start_character) (struct jsm_channel *ch); | 124 | void (*send_start_character)(struct jsm_channel *ch); |
125 | void (*send_stop_character) (struct jsm_channel *ch); | 125 | void (*send_stop_character)(struct jsm_channel *ch); |
126 | void (*copy_data_from_queue_to_uart) (struct jsm_channel *ch); | 126 | void (*copy_data_from_queue_to_uart)(struct jsm_channel *ch); |
127 | u32 (*get_uart_bytes_left) (struct jsm_channel *ch); | 127 | u32 (*get_uart_bytes_left)(struct jsm_channel *ch); |
128 | void (*send_immediate_char) (struct jsm_channel *ch, unsigned char); | 128 | void (*send_immediate_char)(struct jsm_channel *ch, unsigned char); |
129 | }; | 129 | }; |
130 | 130 | ||
131 | 131 | ||