diff options
Diffstat (limited to 'drivers/video/backlight')
-rw-r--r-- | drivers/video/backlight/atmel-pwm-bl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/video/backlight/atmel-pwm-bl.c b/drivers/video/backlight/atmel-pwm-bl.c index 0971a8e78fbd..e21beb6ad943 100644 --- 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) | |||
205 | { | 205 | { |
206 | struct atmel_pwm_bl *pwmbl = platform_get_drvdata(pdev); | 206 | struct atmel_pwm_bl *pwmbl = platform_get_drvdata(pdev); |
207 | 207 | ||
208 | if (pwmbl->gpio_on != -1) | 208 | if (pwmbl->gpio_on != -1) { |
209 | gpio_set_value(pwmbl->gpio_on, 0); | 209 | gpio_set_value(pwmbl->gpio_on, |
210 | 0 ^ pwmbl->pdata->on_active_low); | ||
211 | } | ||
210 | pwm_channel_disable(&pwmbl->pwmc); | 212 | pwm_channel_disable(&pwmbl->pwmc); |
211 | pwm_channel_free(&pwmbl->pwmc); | 213 | pwm_channel_free(&pwmbl->pwmc); |
212 | 214 | ||