aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-bsp/u-boot/u-boot-v2012.04.01/0008-mx6qsabrelite-No-need-to-set-the-direction-for-GPIO3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-bsp/u-boot/u-boot-v2012.04.01/0008-mx6qsabrelite-No-need-to-set-the-direction-for-GPIO3.patch')
-rw-r--r--recipes-bsp/u-boot/u-boot-v2012.04.01/0008-mx6qsabrelite-No-need-to-set-the-direction-for-GPIO3.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes-bsp/u-boot/u-boot-v2012.04.01/0008-mx6qsabrelite-No-need-to-set-the-direction-for-GPIO3.patch b/recipes-bsp/u-boot/u-boot-v2012.04.01/0008-mx6qsabrelite-No-need-to-set-the-direction-for-GPIO3.patch
new file mode 100644
index 0000000..5514e23
--- /dev/null
+++ b/recipes-bsp/u-boot/u-boot-v2012.04.01/0008-mx6qsabrelite-No-need-to-set-the-direction-for-GPIO3.patch
@@ -0,0 +1,33 @@
+From 7bca215d56396abf4173e101f6a292117db2d373 Mon Sep 17 00:00:00 2001
+From: Fabio Estevam <festevam@gmail.com>
+Date: Wed, 11 Apr 2012 10:22:24 +0000
+Subject: [PATCH 08/56] 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>
+---
+ board/freescale/mx6qsabrelite/mx6qsabrelite.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/board/freescale/mx6qsabrelite/mx6qsabrelite.c b/board/freescale/mx6qsabrelite/mx6qsabrelite.c
+index fda3e41..b4d9519 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));
+ }
+--
+1.7.10
+