From: 蔡枫 Date: Fri, 12 Aug 2011 03:30:50 +0000 (+0800) Subject: newton:lcd_en control X-Git-Tag: firefly_0821_release~9772^2~20^2~10 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=261374e09824853a48580869068dfff93bfe356e;p=firefly-linux-kernel-4.4.55.git newton:lcd_en control --- diff --git a/arch/arm/mach-rk29/board-rk29-newton.c b/arch/arm/mach-rk29/board-rk29-newton.c index 45f52ae7a75c..79944570d9e6 100755 --- a/arch/arm/mach-rk29/board-rk29-newton.c +++ b/arch/arm/mach-rk29/board-rk29-newton.c @@ -213,7 +213,7 @@ int rk29_fb_io_enable(void) gpio_direction_output(NEWTON_LCD_DISP, 0); gpio_set_value(NEWTON_LCD_DISP,GPIO_HIGH); gpio_direction_output(NEWTON_LCD_EN, 0); - gpio_set_value(NEWTON_LCD_EN,GPIO_HIGH); + gpio_set_value(NEWTON_LCD_EN,GPIO_LOW); return 0; } @@ -222,7 +222,7 @@ int rk29_fb_io_disable(void) gpio_direction_output(NEWTON_LCD_DISP, 0); gpio_set_value(NEWTON_LCD_DISP,GPIO_LOW); gpio_direction_output(NEWTON_LCD_EN, 0); - gpio_set_value(NEWTON_LCD_EN,GPIO_LOW); + gpio_set_value(NEWTON_LCD_EN,GPIO_HIGH); return 0; }