diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-02-24 10:29:59 +0100 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-02-24 10:29:59 +0100 |
commit | fae56934a0744a4dd6981323ba8a966646fd7ca5 (patch) | |
tree | f1eab46cc702aee6c8cd2c2aaeda95d383ed02a6 /board/ti/am43xx/mux.c | |
parent | 9ed679aeeb9899123bf92ed1eafb7cf6965473dc (diff) | |
parent | 11f296870659e1375e7116a859458b254cc3156f (diff) |
Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'
Diffstat (limited to 'board/ti/am43xx/mux.c')
-rw-r--r-- | board/ti/am43xx/mux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/ti/am43xx/mux.c b/board/ti/am43xx/mux.c index 810b1941db..51f7fd61d5 100644 --- a/board/ti/am43xx/mux.c +++ b/board/ti/am43xx/mux.c @@ -33,8 +33,8 @@ static struct module_pin_mux i2c0_pin_mux[] = { {-1}, }; -static struct module_pin_mux gpio0_22_pin_mux[] = { - {OFFSET(ddr_ba2), (MODE(9) | PULLUP_EN)}, /* GPIO0_22 */ +static struct module_pin_mux gpio5_7_pin_mux[] = { + {OFFSET(spi0_cs0), (MODE(7) | PULLUP_EN)}, /* GPIO5_7 */ {-1}, }; @@ -49,7 +49,7 @@ void enable_board_pin_mux(void) configure_module_pin_mux(i2c0_pin_mux); if (board_is_gpevm()) - configure_module_pin_mux(gpio0_22_pin_mux); + configure_module_pin_mux(gpio5_7_pin_mux); } void enable_i2c0_pin_mux(void) |