1 /*
2  * Copyright (c) 2022, Teslabs Engineering S.L.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #include <zephyr/init.h>
7 #include <soc.h>
8 
gd32e50x_soc_init(void)9 static int gd32e50x_soc_init(void)
10 {
11 	SystemInit();
12 
13 	return 0;
14 }
15 
16 SYS_INIT(gd32e50x_soc_init, PRE_KERNEL_1, 0);
17