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 11:41:30 +0800 |
commit | 28eb616b6c49de492cc0cdb3ad5b618bed77960f (patch) | |
tree | 6df25bcc41fc6a07c7942ea6a8bd871b25f02bc8 /board | |
parent | 1f661f83185da3ecb9200f1772742dff1aff7223 (diff) | |
download | u-boot-imx-28eb616b6c49de492cc0cdb3ad5b618bed77960f.zip u-boot-imx-28eb616b6c49de492cc0cdb3ad5b618bed77960f.tar.gz u-boot-imx-28eb616b6c49de492cc0cdb3ad5b618bed77960f.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>
Diffstat (limited to 'board')
-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 57a388e..870db58 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) |