diff options
author | Songjun Wu <songjun.wu@linux.intel.com> | 2018-10-16 17:19:14 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-11-09 08:43:27 -0800 |
commit | 40efa6c8f648c2cf28c0593164bd4993580bde87 (patch) | |
tree | 35efe0442319903f424ffb97af0c46c09a008c93 /drivers/tty | |
parent | 3c8c2a9e29dca3ee40abf9a61672dfd9509e2ec4 (diff) | |
download | blackbird-obmc-linux-40efa6c8f648c2cf28c0593164bd4993580bde87.tar.gz blackbird-obmc-linux-40efa6c8f648c2cf28c0593164bd4993580bde87.zip |
serial: lantiq: Change init_lqasc to static declaration
init_lqasc() is only used internally, change to static declaration.
Signed-off-by: Songjun Wu <songjun.wu@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/lantiq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/lantiq.c b/drivers/tty/serial/lantiq.c index ba0c70b16bda..e052b69ceb98 100644 --- a/drivers/tty/serial/lantiq.c +++ b/drivers/tty/serial/lantiq.c @@ -784,7 +784,7 @@ static struct platform_driver lqasc_driver = { }, }; -int __init +static int __init init_lqasc(void) { int ret; |