Commit ada1f443 authored by Jingoo Han's avatar Jingoo Han Committed by Greg Kroah-Hartman

serial: sirf: Staticize local symbols

These local symbols are used only in this file.
Fix the following sparse warnings:

drivers/tty/serial/sirfsoc_uart.c:147:6: warning: symbol 'sirfsoc_uart_start_tx' was not declared. Should it be static?
drivers/tty/serial/sirfsoc_uart.c:636:5: warning: symbol 'sirfsoc_uart_probe' was not declared. Should it be static?
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Acked-by: default avatarBarry Song <Baohua.Song@csr.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5df83111
...@@ -157,7 +157,7 @@ static void sirfsoc_uart_stop_tx(struct uart_port *port) ...@@ -157,7 +157,7 @@ static void sirfsoc_uart_stop_tx(struct uart_port *port)
} }
void sirfsoc_uart_start_tx(struct uart_port *port) static void sirfsoc_uart_start_tx(struct uart_port *port)
{ {
struct sirfsoc_uart_port *sirfport = to_sirfport(port); struct sirfsoc_uart_port *sirfport = to_sirfport(port);
struct sirfsoc_register *ureg = &sirfport->uart_reg->uart_reg; struct sirfsoc_register *ureg = &sirfport->uart_reg->uart_reg;
...@@ -829,7 +829,7 @@ static struct of_device_id sirfsoc_uart_ids[] = { ...@@ -829,7 +829,7 @@ static struct of_device_id sirfsoc_uart_ids[] = {
}; };
MODULE_DEVICE_TABLE(of, sirfsoc_uart_ids); MODULE_DEVICE_TABLE(of, sirfsoc_uart_ids);
int sirfsoc_uart_probe(struct platform_device *pdev) static int sirfsoc_uart_probe(struct platform_device *pdev)
{ {
struct sirfsoc_uart_port *sirfport; struct sirfsoc_uart_port *sirfport;
struct uart_port *port; struct uart_port *port;
......
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