1 /*
2  * Copyright (c) 2017 Christian Taedcke
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 /** @file
7  * @brief Silabs EXX32 MCU family General Purpose Input Output (GPIO)
8  * module HAL driver.
9  */
10 
11 #include "soc_gpio.h"
12 
soc_gpio_configure(const struct soc_gpio_pin * pin)13 void soc_gpio_configure(const struct soc_gpio_pin *pin)
14 {
15 	GPIO_PinModeSet(pin->port, pin->pin, pin->mode, pin->out);
16 }
17