1 From 7bca215d56396abf4173e101f6a292117db2d373 Mon Sep 17 00:00:00 2001
2 From: Fabio Estevam <festevam@gmail.com>
3 Date: Wed, 11 Apr 2012 10:22:24 +0000
4 Subject: [PATCH 08/56] mx6qsabrelite: No need to set the direction for
7 There is a 'gpio_direction_output(87, 0);' call previously, so the GPIO direction is
10 Use gpio_set_value() for changing the GPIO output then.
12 Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
13 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15 board/freescale/mx6qsabrelite/mx6qsabrelite.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
18 diff --git a/board/freescale/mx6qsabrelite/mx6qsabrelite.c b/board/freescale/mx6qsabrelite/mx6qsabrelite.c
19 index fda3e41..b4d9519 100644
20 --- a/board/freescale/mx6qsabrelite/mx6qsabrelite.c
21 +++ b/board/freescale/mx6qsabrelite/mx6qsabrelite.c
22 @@ -135,7 +135,7 @@ static void setup_iomux_enet(void)
24 /* Need delay 10ms according to KSZ9021 spec */
26 - gpio_direction_output(87, 1); /* GPIO 3-23 */
27 + gpio_set_value(87, 1); /* GPIO 3-23 */
29 imx_iomux_v3_setup_multiple_pads(enet_pads2, ARRAY_SIZE(enet_pads2));