projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc0292a
)
gpio: ucb1400: Use devm_gpiochip_add_data() for gpio registration
author
Laxman Dewangan
<ldewangan@nvidia.com>
Mon, 22 Feb 2016 12:13:28 +0000
(17:43 +0530)
committer
Laxman Dewangan
<ldewangan@nvidia.com>
Tue, 23 Feb 2016 15:05:50 +0000
(20:35 +0530)
Use devm_gpiochip_add_data() for GPIO registration.
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
drivers/gpio/gpio-ucb1400.c
patch
|
blob
|
history
diff --git
a/drivers/gpio/gpio-ucb1400.c
b/drivers/gpio/gpio-ucb1400.c
index
2c5cd46
..
5dbe31b
100644
(file)
--- a/
drivers/gpio/gpio-ucb1400.c
+++ b/
drivers/gpio/gpio-ucb1400.c
@@
-67,7
+67,7
@@
static int ucb1400_gpio_probe(struct platform_device *dev)
ucb->gc.set = ucb1400_gpio_set;
ucb->gc.can_sleep = true;
- err =
gpiochip_add_data(
&ucb->gc, ucb);
+ err =
devm_gpiochip_add_data(&dev->dev,
&ucb->gc, ucb);
if (err)
goto err;
@@
-90,7
+90,6
@@
static int ucb1400_gpio_remove(struct platform_device *dev)
return err;
}
- gpiochip_remove(&ucb->gc);
return err;
}