diff options
author | Johan Hovold <johan@kernel.org> | 2015-05-12 15:20:25 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-05-13 10:02:12 +0200 |
commit | 8864afaa635be099c5c73a2f0d640a12e58f1d14 (patch) | |
tree | 79c2b6286955a10399cc011689ca7aad35ff0bbd /drivers/gpio | |
parent | b8a3f52e9824841fb1a79de649fc3487f734bc9f (diff) | |
download | linux-8864afaa635be099c5c73a2f0d640a12e58f1d14.tar.bz2 |
gpio: dln2: fix build breakage
The dln2 driver was initialising a gpiolib private field, which is now
gone.
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Acked-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-dln2.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-dln2.c b/drivers/gpio/gpio-dln2.c index dbdb4de82c6d..6685712c15cf 100644 --- a/drivers/gpio/gpio-dln2.c +++ b/drivers/gpio/gpio-dln2.c @@ -466,7 +466,6 @@ static int dln2_gpio_probe(struct platform_device *pdev) dln2->gpio.owner = THIS_MODULE; dln2->gpio.base = -1; dln2->gpio.ngpio = pins; - dln2->gpio.exported = true; dln2->gpio.can_sleep = true; dln2->gpio.irq_not_threaded = true; dln2->gpio.set = dln2_gpio_set; |