diff options
author | Christian Riesch <christian.riesch@omicron.at> | 2011-11-28 23:46:15 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-06 23:59:36 +0100 |
commit | e5b9aa9e9c0bdd536177e8ab8071be30d2a0e7d9 (patch) | |
tree | 92a23e79222fc895bd369fb44a7db2c112711034 /board/davinci | |
parent | 964930bcfdc67112ea76727163f3408bcf40f614 (diff) | |
download | u-boot-imx-e5b9aa9e9c0bdd536177e8ab8071be30d2a0e7d9.zip u-boot-imx-e5b9aa9e9c0bdd536177e8ab8071be30d2a0e7d9.tar.gz u-boot-imx-e5b9aa9e9c0bdd536177e8ab8071be30d2a0e7d9.tar.bz2 |
arm, hawkboard: Remove obsolete struct pinmux_config i2c_pins
The configuration in struct pinmux_config i2c_pins does not configure
the pins for i2c but for uart. Since this function is already
configured by struct pinmux_config uart2_pins the i2c_pins struct
is obsolete.
Signed-off-by: Christian Riesch <christian.riesch@omicron.at>
Cc: Heiko Schocher <hs@denx.de>
Cc: Syed Mohammed Khasim <sm.khasim@gmail.com>
Cc: Sughosh Ganu <urwithsughosh@gmail.com>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'board/davinci')
-rw-r--r-- | board/davinci/da8xxevm/hawkboard_nand_spl.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/board/davinci/da8xxevm/hawkboard_nand_spl.c b/board/davinci/da8xxevm/hawkboard_nand_spl.c index 0fdccac..fd130fa 100644 --- a/board/davinci/da8xxevm/hawkboard_nand_spl.c +++ b/board/davinci/da8xxevm/hawkboard_nand_spl.c @@ -71,15 +71,9 @@ static const struct pinmux_config uart2_pins[] = { { pinmux(4), 2, 5 } }; -static const struct pinmux_config i2c_pins[] = { - { pinmux(4), 2, 4 }, - { pinmux(4), 2, 5 } -}; - static const struct pinmux_resource pinmuxes[] = { PINMUX_ITEM(mii_pins), PINMUX_ITEM(mdio_pins), - PINMUX_ITEM(i2c_pins), PINMUX_ITEM(nand_pins), PINMUX_ITEM(uart2_pins), }; |