Commit 059b0936 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

greybus: uart-gb: mark some functions static

Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 3689f974
......@@ -390,7 +390,7 @@ static const struct tty_operations gb_ops = {
};
int gb_uart_connection_init(struct gb_connection *connection)
static int gb_uart_connection_init(struct gb_connection *connection)
{
struct gb_tty *gb_tty;
struct device *tty_dev;
......@@ -444,7 +444,7 @@ int gb_uart_connection_init(struct gb_connection *connection)
return retval;
}
void gb_uart_connection_exit(struct gb_connection *connection)
static void gb_uart_connection_exit(struct gb_connection *connection)
{
struct gb_tty *gb_tty = connection->private;
struct tty_struct *tty;
......
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