diff options
author | Alexander Stein <alexander.stein@systec-electronic.com> | 2012-11-02 11:02:25 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-11-04 13:21:29 -0500 |
commit | 5c868fc629b0e645a68aec3a6834d965e71531f4 (patch) | |
tree | db8cabeb7c987b88d731ad17ecbb7daad1e04192 | |
parent | 1631081993b1e6a6d668b3eb089904b88f0efc2b (diff) |
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) | |||
215 | struct gpio_chip *gpio = &chip->gpio; | 215 | struct gpio_chip *gpio = &chip->gpio; |
216 | 216 | ||
217 | gpio->label = dev_name(chip->dev); | 217 | gpio->label = dev_name(chip->dev); |
218 | gpio->dev = chip->dev; | ||
218 | gpio->owner = THIS_MODULE; | 219 | gpio->owner = THIS_MODULE; |
219 | gpio->direction_input = pch_gpio_direction_input; | 220 | gpio->direction_input = pch_gpio_direction_input; |
220 | gpio->get = pch_gpio_get; | 221 | gpio->get = pch_gpio_get; |