diff options
author | Benoît Thébaudeau <benoit.thebaudeau@advansee.com> | 2013-05-03 10:32:21 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-05-05 17:55:03 +0200 |
commit | 0f6829e111fa6aeaa8a15e903b927da4a20b1b25 (patch) | |
tree | a4ea44b29fa2a1d533c8f5ffda1412dfdb7a0fb7 /board | |
parent | 686e14488e04564c3760145a35d03c7ffecb0f58 (diff) | |
download | u-boot-imx-0f6829e111fa6aeaa8a15e903b927da4a20b1b25.zip u-boot-imx-0f6829e111fa6aeaa8a15e903b927da4a20b1b25.tar.gz u-boot-imx-0f6829e111fa6aeaa8a15e903b927da4a20b1b25.tar.bz2 |
imx: mx35pdk: Fix WDOG_RST iomux function
The signal connected from this pin to the PMIC is WDOG_B, i.e. ALT0 mode, not
ALT1 (which even corresponds to nothing).
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx35pdk/mx35pdk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mx35pdk/mx35pdk.c b/board/freescale/mx35pdk/mx35pdk.c index b7f474e..9993d7b 100644 --- a/board/freescale/mx35pdk/mx35pdk.c +++ b/board/freescale/mx35pdk/mx35pdk.c @@ -263,7 +263,7 @@ int board_late_init(void) if (pmic_detect()) { p = pmic_get("FSL_PMIC"); mxc_request_iomux(MX35_PIN_WATCHDOG_RST, MUX_CONFIG_SION | - MUX_CONFIG_ALT1); + MUX_CONFIG_FUNC); pmic_reg_read(p, REG_SETTING_0, &pmic_val); pmic_reg_write(p, REG_SETTING_0, |