From: Greg Kroah-Hartman Date: Tue, 28 Oct 2014 01:49:33 +0000 (+0800) Subject: greybus: uart-gb: mark some functions static X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=059b093616313683a3d6259646d21f64d2756838;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git greybus: uart-gb: mark some functions static Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/uart-gb.c b/drivers/staging/greybus/uart-gb.c index 370a78fb231f..f88a301eb9fe 100644 --- a/drivers/staging/greybus/uart-gb.c +++ b/drivers/staging/greybus/uart-gb.c @@ -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 @@ error: 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;