blob: e096ba64b0b59bfb2c4c004b147c4c2d3ed0192d [file] [log] [blame]
/*
* Copyright (c) 2021, Teslabs Engineering S.L.
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/device.h>
#include <zephyr/init.h>
#include <soc.h>
static int gd32f4xx_soc_init(void)
{
SystemInit();
return 0;
}
SYS_INIT(gd32f4xx_soc_init, PRE_KERNEL_1, 0);