greybus: uart-gb: mark some functions static

Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
diff --git a/drivers/staging/greybus/uart-gb.c b/drivers/staging/greybus/uart-gb.c
index 370a78f..f88a301 100644
--- a/drivers/staging/greybus/uart-gb.c
+++ b/drivers/staging/greybus/uart-gb.c
@@ -390,7 +390,7 @@
 };
 
 
-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 @@
 	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;