1 /*
2  * Copyright (c) Copyright (c) 2021 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 
soc_early_init_hook(void)10 void soc_early_init_hook(void)
11 {
12 	SystemInit();
13 }
14