1
0
Fork 0

backlight: fix blanking for L4F00242T03 LCD

The LCD was turned on if the variable power was > 0, but that was
incorrect.  The LCD has to be turned on in NORMAL and UNBLANK case.

Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Acked-by: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Marek Vasut 2010-11-11 14:05:26 -08:00 committed by Linus Torvalds
parent 6bde9082c5
commit 4dbdf8861a
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ static int l4f00242t03_lcd_power_set(struct lcd_device *ld, int power)
const u16 slpin = 0x10;
const u16 disoff = 0x28;
if (power) {
if (power <= FB_BLANK_NORMAL) {
if (priv->lcd_on)
return 0;