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