boards: stm32g0316_disco: pinmux init clean up

Remove useless function call on in board pinmux init.


Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
Erwan Gouriou 2021-03-11 11:10:19 +01:00 committed by Maureen Helm
commit 089f907305

View file

@ -11,10 +11,6 @@
#include <pinmux/stm32/pinmux_stm32.h>
/* pin assignments for STM32G0316-DISCO board */
static const struct pin_config pinconf[] = {
};
static int pinmux_stm32_init(const struct device *port)
{
ARG_UNUSED(port);
@ -25,8 +21,6 @@ static int pinmux_stm32_init(const struct device *port)
LL_SYSCFG_EnablePinRemap(LL_SYSCFG_PIN_RMP_PA11);
#endif
stm32_setup_pins(pinconf, ARRAY_SIZE(pinconf));
return 0;
}