1 /*
2  * Copyright (c) 2024 Microchip Technology Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/device.h>
8 #include <zephyr/init.h>
9 #include <zephyr/kernel.h>
10 #include <soc.h>
11 #include <soc_cmn_init.h>
12 
soc_prep_hook(void)13 void soc_prep_hook(void)
14 {
15 	mec5_soc_common_init();
16 }
17