diff options
author | Ye Li <ye.li@nxp.com> | 2016-06-06 11:41:30 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-06-06 13:31:13 +0800 |
commit | b4bc642c6255ee1e3abc6f15b2dcabcccf1b55c1 (patch) | |
tree | 6b68cdcb3ee795b3a0aa5876ebaaf4460ae2608f | |
parent | 139a6f95be94f75e4038e0eacddbd1f0a365f601 (diff) | |
download | u-boot-imx-b4bc642c6255ee1e3abc6f15b2dcabcccf1b55c1.zip u-boot-imx-b4bc642c6255ee1e3abc6f15b2dcabcccf1b55c1.tar.gz u-boot-imx-b4bc642c6255ee1e3abc6f15b2dcabcccf1b55c1.tar.bz2 |
MLK-12884 mx7dsabresd: Fix LCD_PWR_EN output setting
LCD_PWR_EN controls the G pin of Q13 PMOS which needs low voltage to connect
D to S for outputting LCD 3.3V. If LCD_PWR_EN is high, we measured the LCD 3v3
is actually 1.2V.
Signed-off-by: Ye Li <ye.li@nxp.com>
(cherry picked from commit 28eb616b6c49de492cc0cdb3ad5b618bed77960f)
-rw-r--r-- | board/freescale/mx7dsabresd/mx7dsabresd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index 2855d7f..9bc67a1 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -197,7 +197,7 @@ static enum qn_level seq[3][2] = { static enum qn_func qn_output[8] = { qn_disable, qn_reset, qn_reset, qn_reset, qn_reset, qn_reset, qn_enable, - qn_enable + qn_disable }; static void iox74lv_init(void) |