From c71d8dbe09d69feda7e57745bd3909727d3cc33f Mon Sep 17 00:00:00 2001 From: Grazvydas Ignotas Date: Wed, 25 Nov 2009 15:33:33 +0200 Subject: [PATCH] don't turn on charger LED --- board/omap3/pandora/pandora.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/board/omap3/pandora/pandora.c b/board/omap3/pandora/pandora.c index b58f8844d30..c360a716679 100644 --- a/board/omap3/pandora/pandora.c +++ b/board/omap3/pandora/pandora.c @@ -123,10 +123,10 @@ static void lcd_init(void) *((volatile uint *) 0x48098040) = 0x020127DC; *((volatile uint *) 0x48098048) = 0x00000001; /* CS1 */ - /* Set GPIOs on T2 (Turn on LCD BL) */ - byte = 0xC0; + /* Set GPIO on T2 (Turn on LCD BL) */ + byte = 0x40; i2c_write(0x49, 0x9B, 1, &byte, 1); - byte = 0xC0; + byte = 0x40; i2c_write(0x49, 0x9E, 1, &byte, 1); /* VAUX1 = 3.0V (LCD) */ -- 2.39.5