boards: 96b_wistrio: rename pinmux board file
The name pinmux is misleading, since no actual pinmuxing is done (just pull-up setup). Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
651fa0b08a
commit
25f5601563
2 changed files with 3 additions and 3 deletions
|
@ -1,2 +1,2 @@
|
|||
zephyr_library()
|
||||
zephyr_library_sources(pinmux.c)
|
||||
zephyr_library_sources(pins.c)
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include <kernel.h>
|
||||
#include <sys/sys_io.h>
|
||||
|
||||
static int pinmux_stm32_init(const struct device *port)
|
||||
static int pins_stm32_init(const struct device *port)
|
||||
{
|
||||
ARG_UNUSED(port);
|
||||
const struct device *gpioa, *gpiob, *gpioh;
|
||||
|
@ -49,4 +49,4 @@ static int pinmux_stm32_init(const struct device *port)
|
|||
}
|
||||
|
||||
/* Need to be initialised after GPIO driver */
|
||||
SYS_INIT(pinmux_stm32_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE);
|
||||
SYS_INIT(pins_stm32_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE);
|
Loading…
Add table
Add a link
Reference in a new issue