diff options
Diffstat (limited to 'drivers/video/chipsfb.c')
-rw-r--r-- | drivers/video/chipsfb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/chipsfb.c b/drivers/video/chipsfb.c index eba9d93ae360..73cb426bf2d7 100644 --- a/drivers/video/chipsfb.c +++ b/drivers/video/chipsfb.c | |||
@@ -149,12 +149,11 @@ static int chipsfb_blank(int blank, struct fb_info *info) | |||
149 | mutex_lock(&pmac_backlight_mutex); | 149 | mutex_lock(&pmac_backlight_mutex); |
150 | 150 | ||
151 | if (pmac_backlight) { | 151 | if (pmac_backlight) { |
152 | down(&pmac_backlight->sem); | ||
153 | |||
154 | /* used to disable backlight only for blank > 1, but it seems | 152 | /* used to disable backlight only for blank > 1, but it seems |
155 | * useful at blank = 1 too (saves battery, extends backlight | 153 | * useful at blank = 1 too (saves battery, extends backlight |
156 | * life) | 154 | * life) |
157 | */ | 155 | */ |
156 | down(&pmac_backlight->sem); | ||
158 | if (blank) | 157 | if (blank) |
159 | pmac_backlight->props->power = FB_BLANK_POWERDOWN; | 158 | pmac_backlight->props->power = FB_BLANK_POWERDOWN; |
160 | else | 159 | else |