Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
21867fd4d0c5039621a906931b56f2763e93158b
/
.
/
boards
/
arm
/
sam4e_xpro
/
pinmux.c
blob: 961f522f3cf7e1a319a1f82531496ccea687e716 [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2019 Gerson Fernando Budke
*
* SPDX-License-Identifier: Apache-2.0
*/
#include
<init.h>
static
int
sam4e_xpro_init
(
const
struct
device
*
dev
)
{
ARG_UNUSED
(
dev
);
return
0
;
}
SYS_INIT
(
sam4e_xpro_init
,
PRE_KERNEL_1
,
0
);