From 9c965c88b4a0aeb69b3523af8ce7c83e284022f9 Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Tue, 18 Jun 2013 13:08:38 +0200 Subject: fuze+: fix lcd code which got broken in 52426d0 The lcd data line were not setup as input anymore, making register reading plain broken and probably lead to bad lcd detection. Change-Id: I281460f845537c58045f3893261ded5c9c6e53b5 --- firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c index 79a4151682..93189c14e5 100644 --- a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c +++ b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c @@ -194,7 +194,7 @@ static uint32_t i80_read_register(uint32_t data_out) udelay(1); imx233_pinctrl_set_gpio(1, 20, true); /* lcd_wr */ udelay(3); - HW_PINCTRL_DOUTn_CLR(1) = 0x3ffff; /* lcd_d{0-17} */ + HW_PINCTRL_DOEn_CLR(1) = 0x3ffff; /* lcd_d{0-17} */ udelay(2); imx233_pinctrl_set_gpio(1, 23, false); /* lcd_enable */ udelay(1); -- cgit v1.2.3