summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorFabio Estevam <festevam@gmail.com>2012-04-11 10:22:24 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-05-15 08:31:31 +0200
commitbdb9f7604ddaffe623267df5c381353ac23a90a6 (patch)
tree87870aa438e74238e10243a4573b24c9e4b119ec /board
parent20831061d8cec4ec537fada6b9abe263e208b4ae (diff)
downloadblackbird-obmc-uboot-bdb9f7604ddaffe623267df5c381353ac23a90a6.tar.gz
blackbird-obmc-uboot-bdb9f7604ddaffe623267df5c381353ac23a90a6.zip
mx6qsabrelite: No need to set the direction for GPIO3_23 again
There is a 'gpio_direction_output(87, 0);' call previously, so the GPIO direction is already established. Use gpio_set_value() for changing the GPIO output then. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Acked-by: Dirk Behme <dirk.behme@googlemail.com>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/mx6qsabrelite/mx6qsabrelite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mx6qsabrelite/mx6qsabrelite.c b/board/freescale/mx6qsabrelite/mx6qsabrelite.c
index fda3e41a03..b4d9519747 100644
--- a/board/freescale/mx6qsabrelite/mx6qsabrelite.c
+++ b/board/freescale/mx6qsabrelite/mx6qsabrelite.c
@@ -135,7 +135,7 @@ static void setup_iomux_enet(void)
/* Need delay 10ms according to KSZ9021 spec */
udelay(1000 * 10);
- gpio_direction_output(87, 1); /* GPIO 3-23 */
+ gpio_set_value(87, 1); /* GPIO 3-23 */
imx_iomux_v3_setup_multiple_pads(enet_pads2, ARRAY_SIZE(enet_pads2));
}
OpenPOWER on IntegriCloud