From e4e23a002ce5b04b70e7a82cccf5a29ce6d396a1 Mon Sep 17 00:00:00 2001
From: Hauke Petersen <hauke.petersen@fu-berlin.de>
Date: Sat, 20 Feb 2016 13:55:52 +0100
Subject: [PATCH] boards/slwstk6220a: adapted to GPIO changes

---
 boards/slwstk6220a/board.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/boards/slwstk6220a/board.c b/boards/slwstk6220a/board.c
index 4baec01e0e..62560f11d7 100644
--- a/boards/slwstk6220a/board.c
+++ b/boards/slwstk6220a/board.c
@@ -26,11 +26,11 @@ void board_init(void)
 {
     /* enable access to the evaluation board controller chip. Without this, the
      * board controller does not forward the UART output to the USB port */
-    gpio_init(BC_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
+    gpio_init(BC_PIN, GPIO_OUT);
     gpio_set(BC_PIN);
     /* initialize the boards LEDs */
-    gpio_init(LED0_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
-    gpio_init(LED1_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
+    gpio_init(LED0_PIN, GPIO_OUT);
+    gpio_init(LED1_PIN, GPIO_OUT);
     /* initialize the CPU */
     cpu_init();
 }
-- 
GitLab