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