diff options
author | Ye Li <ye.li@nxp.com> | 2016-06-06 11:41:30 +0800 |
---|---|---|
committer | zhang sanshan <sanshan.zhang@nxp.com> | 2016-06-15 15:32:11 +0800 |
commit | 6581aea78198bf78c9ceb3308b96d87c9d8f61bb (patch) | |
tree | 1593598f5cb68db689f1c2fc69a2a61d7b5aa815 | |
parent | 73fb09dfb7fa2640c51fd61ac91d31ddb50d7c73 (diff) | |
download | u-boot-imx-m6.0.1_2.1.0-ga.zip u-boot-imx-m6.0.1_2.1.0-ga.tar.gz u-boot-imx-m6.0.1_2.1.0-ga.tar.bz2 |
MLK-12884 mx7dsabresd: Fix LCD_PWR_EN output settingm6.0.1_2.1.0-ga
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) |