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:
185d914
)
backlight: atmel-pwm-bl: fix gpio polarity in remove
author
Johan Hovold
<
[email protected]
>
Tue, 12 Nov 2013 23:09:39 +0000
(15:09 -0800)
committer
Linus Torvalds
<
[email protected]
>
Wed, 13 Nov 2013 03:09:21 +0000
(12:09 +0900)
Make sure to honour gpio polarity also at remove so that the backlight is
actually disabled on boards with active-low enable pin.
Signed-off-by: Johan Hovold <
[email protected]
>
Acked-by: Jingoo Han <
[email protected]
>
Cc: <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/backlight/atmel-pwm-bl.c
patch
|
blob
|
history
diff --git
a/drivers/video/backlight/atmel-pwm-bl.c
b/drivers/video/backlight/atmel-pwm-bl.c
index 0971a8e78fbdeb494ec4d4ba506d100527226fbb..e21beb6ad9439e1b3690b61df5fd2a7766bced5f 100644
(file)
--- a/
drivers/video/backlight/atmel-pwm-bl.c
+++ b/
drivers/video/backlight/atmel-pwm-bl.c
@@
-205,8
+205,10
@@
static int atmel_pwm_bl_remove(struct platform_device *pdev)
{
struct atmel_pwm_bl *pwmbl = platform_get_drvdata(pdev);
- if (pwmbl->gpio_on != -1)
- gpio_set_value(pwmbl->gpio_on, 0);
+ if (pwmbl->gpio_on != -1) {
+ gpio_set_value(pwmbl->gpio_on,
+ 0 ^ pwmbl->pdata->on_active_low);
+ }
pwm_channel_disable(&pwmbl->pwmc);
pwm_channel_free(&pwmbl->pwmc);