blob: 0bd63afaff5f06b5a775513dfd4c74797794a4dd [file] [log] [blame]
/*
* 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);