From 261374e09824853a48580869068dfff93bfe356e Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E8=94=A1=E6=9E=AB?= Date: Fri, 12 Aug 2011 11:30:50 +0800 Subject: [PATCH] newton:lcd_en control --- arch/arm/mach-rk29/board-rk29-newton.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.34.1