2012-11-02 15:08:32

by Alexander Stein

[permalink] [raw]
Subject: [PATCH] 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 <[email protected]>
---
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 4ad0c4f..e3a14fe 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;
--
1.7.8.6


2012-11-04 18:22:31

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH] gpio-pch: Set parent dev for gpio chip

On Fri, Nov 2, 2012 at 4:02 PM, Alexander Stein
<[email protected]> wrote:

> This will show the gpio chip as a child node
> under /sys/bus/pci/devices/xxxx:xx:xx.x/
>
> Signed-off-by: Alexander Stein <[email protected]>

Thanks, patch applied!

Yours,
Linus Walleij