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 
soc_early_init_hook(void)12 void soc_early_init_hook(void)
13 {
14 
15 	SystemInit();
16 }
17