diff options
| author | Anton Wuerfel <[email protected]> | 2016-01-14 16:08:15 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2016-02-06 23:15:53 -0800 |
| commit | b34f9fafea371a28d7007d7d003396f655c8f60d (patch) | |
| tree | f9a895d82fe122871378e3671d2e154daa5fb6fd | |
| parent | c2f5fde143b47136dc8f8b7a2ce65d9bf6286c12 (diff) | |
tty: serial: 8250: Move EXPORT_SYMBOL to function
This patch moves EXPORT_SYMBOL macros directly after the definition of
the corresponding symbol to remove checkpatch warnings.
Signed-off-by: Anton Würfel <[email protected]>
Signed-off-by: Phillip Raffeck <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Reviewed-by: Peter Hurley <[email protected]>
Cc: [email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/tty/serial/8250/8250_core.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/tty/serial/8250/8250_core.c b/drivers/tty/serial/8250/8250_core.c index 8031e428894f..3d9623824b0b 100644 --- a/drivers/tty/serial/8250/8250_core.c +++ b/drivers/tty/serial/8250/8250_core.c @@ -768,6 +768,7 @@ void serial8250_suspend_port(int line) uart_suspend_port(&serial8250_reg, port); } +EXPORT_SYMBOL(serial8250_suspend_port); /** * serial8250_resume_port - resume one serial port @@ -793,6 +794,7 @@ void serial8250_resume_port(int line) } uart_resume_port(&serial8250_reg, port); } +EXPORT_SYMBOL(serial8250_resume_port); /* * Register a set of serial devices attached to a platform device. The @@ -1172,9 +1174,6 @@ static void __exit serial8250_exit(void) module_init(serial8250_init); module_exit(serial8250_exit); -EXPORT_SYMBOL(serial8250_suspend_port); -EXPORT_SYMBOL(serial8250_resume_port); - MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Generic 8250/16x50 serial driver"); |