1 /* 2 * Copyright (c) 2021, Teslabs Engineering S.L. 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 #include <zephyr/device.h> 7 #include <zephyr/init.h> 8 #include <soc.h> 9 soc_early_init_hook(void)10 void soc_early_init_hook(void) 11 { 12 SystemInit(); 13 } 14