From 426f29d6be1272dc3e7678144d2ef2a89a1fdd1d Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Sat, 30 Aug 2014 16:51:21 -0700 Subject: [PATCH] greybus: gpio: tie into gb core properly --- drivers/staging/greybus/gpio-gb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/greybus/gpio-gb.c b/drivers/staging/greybus/gpio-gb.c index 30b15ed..7b8b85f 100644 --- a/drivers/staging/greybus/gpio-gb.c +++ b/drivers/staging/greybus/gpio-gb.c @@ -77,7 +77,7 @@ int gb_gpio_probe(struct greybus_device *gdev, gpio->ngpio = 42; // FIXME!!! gpio->can_sleep = false; // FIXME!!! - greybus_set_drvdata(gdev, gb_gpio); + gdev->gb_gpio_dev= gb_gpio; retval = gpiochip_add(gpio); if (retval) { @@ -92,7 +92,7 @@ void gb_gpio_disconnect(struct greybus_device *gdev) { struct gb_gpio_device *gb_gpio_dev; - gb_gpio_dev = greybus_get_drvdata(gdev); + gb_gpio_dev = gdev->gb_gpio_dev; gpiochip_remove(&gb_gpio_dev->chip); } -- 2.7.4