greybus: module: remove obsolete gb_tty pointer

We aren't using this anymore, so remove gb_tty from struct gb_module.

Reviewed-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
diff --git a/drivers/staging/greybus/module.c b/drivers/staging/greybus/module.c
index f72e6ae..c424a5a 100644
--- a/drivers/staging/greybus/module.c
+++ b/drivers/staging/greybus/module.c
@@ -132,8 +132,6 @@
 	list_del(&gmod->links);
 	spin_unlock_irq(&gb_modules_lock);
 
-	/* XXX Do something with gmod->gb_tty */
-
 	gb_interface_destroy(gmod);
 
 	kfree(gmod->product_string);
diff --git a/drivers/staging/greybus/module.h b/drivers/staging/greybus/module.h
index facc8ba..2fdca57 100644
--- a/drivers/staging/greybus/module.h
+++ b/drivers/staging/greybus/module.h
@@ -28,8 +28,6 @@
 	u64 unique_id;
 
 	struct greybus_host_device *hd;
-
-	struct gb_tty *gb_tty;
 };
 #define to_gb_module(d) container_of(d, struct gb_module, dev)