greybus: s/greybus_device_id/greybus_module_id/g
diff --git a/drivers/staging/greybus/sdio-gb.c b/drivers/staging/greybus/sdio-gb.c
index 81eb33d..665767d 100644
--- a/drivers/staging/greybus/sdio-gb.c
+++ b/drivers/staging/greybus/sdio-gb.c
@@ -18,7 +18,7 @@
 	// FIXME - some lock?
 };
 
-static const struct greybus_device_id id_table[] = {
+static const struct greybus_module_id id_table[] = {
 	{ GREYBUS_DEVICE(0x43, 0x43) },	/* make shit up */
 	{ },	/* terminating NULL entry */
 };
@@ -46,7 +46,7 @@
 };
 
 int gb_sdio_probe(struct greybus_device *gdev,
-		  const struct greybus_device_id *id)
+		  const struct greybus_module_id *id)
 {
 	struct mmc_host *mmc;
 	struct gb_sdio_host *host;