1 /* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/cache.h> 8 soc_late_init_hook(void)9void soc_late_init_hook(void) 10 { 11 #ifdef CONFIG_CACHE_MANAGEMENT 12 sys_cache_data_enable(); 13 sys_cache_instr_enable(); 14 #endif /* CONFIG_CACHE_MANAGEMENT */ 15 } 16