projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a8fe5d
)
backlight: lms283gf05: use devm_gpio_request_one
author
Jingoo Han
<
[email protected]
>
Tue, 18 Dec 2012 00:00:40 +0000
(16:00 -0800)
committer
Linus Torvalds
<
[email protected]
>
Tue, 18 Dec 2012 01:15:15 +0000
(17:15 -0800)
By using devm_gpio_request_one it is possible to set the direction
and initial value in one shot. Thus, using devm_gpio_request_one
can make the code simpler.
Signed-off-by: Jingoo Han <
[email protected]
>
Cc: Richard Purdie <
[email protected]
>
Acked-by: Marek Vasut <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/backlight/lms283gf05.c
patch
|
blob
|
history
diff --git
a/drivers/video/backlight/lms283gf05.c
b/drivers/video/backlight/lms283gf05.c
index b29c7071c9db3b3432dc953d2c02fa113ddbdb1f..b7ad0d526bf70e6382a9f934202787ff798111d6 100644
(file)
--- a/
drivers/video/backlight/lms283gf05.c
+++ b/
drivers/video/backlight/lms283gf05.c
@@
-158,13
+158,9
@@
static int lms283gf05_probe(struct spi_device *spi)
int ret = 0;
if (pdata != NULL) {
- ret = devm_gpio_request(&spi->dev, pdata->reset_gpio,
- "LMS285GF05 RESET");
- if (ret)
- return ret;
-
- ret = gpio_direction_output(pdata->reset_gpio,
- !pdata->reset_inverted);
+ ret = devm_gpio_request_one(&spi->dev, pdata->reset_gpio,
+ GPIOF_DIR_OUT | !pdata->reset_inverted,
+ "LMS285GF05 RESET");
if (ret)
return ret;
}