diff options
author | Guennadi Liakhovetski <g.liakhovetski@pengutronix.de> | 2008-04-28 05:14:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:34 -0400 |
commit | d72cbed0c486e3db8b56380635f8e845073ce63a (patch) | |
tree | 8739c1078f970a2acdb24fd3f2b94c68c89dd3b5 /drivers/gpio/pcf857x.c | |
parent | 438d8908b379b6322fc3b28d45c9ebdddf58bc20 (diff) |
gpiolib: i2c/spi drivers: handle rmmod better
Use the newly introduced owner field in struct gpio_chip to protect the
current (small) set of non-SOC GPIO drivers from being unloaded while any of
their GPIOs are in use.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@pengutronix.de>
[ add mcp23s08 and pcf857x ]
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/gpio/pcf857x.c')
-rw-r--r-- | drivers/gpio/pcf857x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/pcf857x.c b/drivers/gpio/pcf857x.c index c6b3b5378384..1106aa15ac79 100644 --- a/drivers/gpio/pcf857x.c +++ b/drivers/gpio/pcf857x.c | |||
@@ -159,6 +159,7 @@ static int pcf857x_probe(struct i2c_client *client) | |||
159 | 159 | ||
160 | gpio->chip.base = pdata->gpio_base; | 160 | gpio->chip.base = pdata->gpio_base; |
161 | gpio->chip.can_sleep = 1; | 161 | gpio->chip.can_sleep = 1; |
162 | gpio->chip.owner = THIS_MODULE; | ||
162 | 163 | ||
163 | /* NOTE: the OnSemi jlc1562b is also largely compatible with | 164 | /* NOTE: the OnSemi jlc1562b is also largely compatible with |
164 | * these parts, notably for output. It has a low-resolution | 165 | * these parts, notably for output. It has a low-resolution |