1 /* 2 * Copyright (c) 2006-2023, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2023-02-21 GuEe-GUI first version 9 */ 10 11 #ifndef __SETUP_H__ 12 #define __SETUP_H__ 13 14 #include <rtdef.h> 15 #include <mm_aspace.h> 16 #ifdef RT_USING_OFW 17 #include <drivers/ofw_fdt.h> 18 #endif 19 20 void rt_hw_common_setup(void); 21 22 #endif /* __SETUP_H__ */ 23