diff options
author | Alexander Stein <alexander.stein@systec-electronic.com> | 2012-11-02 16:02:25 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-11-04 19:21:29 +0100 |
commit | 5c868fc629b0e645a68aec3a6834d965e71531f4 (patch) | |
tree | db8cabeb7c987b88d731ad17ecbb7daad1e04192 | |
parent | 1631081993b1e6a6d668b3eb089904b88f0efc2b (diff) | |
download | blackbird-obmc-linux-5c868fc629b0e645a68aec3a6834d965e71531f4.tar.gz blackbird-obmc-linux-5c868fc629b0e645a68aec3a6834d965e71531f4.zip |
gpio-pch: Set parent dev for gpio chip
This will show the gpio chip as a child node
under /sys/bus/pci/devices/xxxx:xx:xx.x/
Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-pch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-pch.c b/drivers/gpio/gpio-pch.c index 4ad0c4f9171c..e3a14fef79e1 100644 --- a/drivers/gpio/gpio-pch.c +++ b/drivers/gpio/gpio-pch.c @@ -215,6 +215,7 @@ static void pch_gpio_setup(struct pch_gpio *chip) struct gpio_chip *gpio = &chip->gpio; gpio->label = dev_name(chip->dev); + gpio->dev = chip->dev; gpio->owner = THIS_MODULE; gpio->direction_input = pch_gpio_direction_input; gpio->get = pch_gpio_get; |