zephyr/soc/gd/gd32/gd32e50x/soc.c

17 lines
251 B
C

/*
* Copyright (c) 2022, Teslabs Engineering S.L.
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/init.h>
#include <soc.h>
static int gd32e50x_soc_init(void)
{
SystemInit();
return 0;
}
SYS_INIT(gd32e50x_soc_init, PRE_KERNEL_1, 0);