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:29:33 +0800 |
commit | 68f095be9f75405768ede36dadbb2d0be91697d9 (patch) | |
tree | 1db7ae80b6b5f73099cb595ea99d46cc62c24248 | |
parent | 68b49ddaa7e717d5451c6476d3e431b8702adab0 (diff) | |
download | u-boot-imx-68f095be9f75405768ede36dadbb2d0be91697d9.zip u-boot-imx-68f095be9f75405768ede36dadbb2d0be91697d9.tar.gz u-boot-imx-68f095be9f75405768ede36dadbb2d0be91697d9.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 6397ae2..d80610c 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -202,7 +202,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 }; void iox74lv_init(void) |