setup.h 403 B

12345678910111213141516171819202122
  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. #ifndef __SETUP_H__
  11. #define __SETUP_H__
  12. #include <rtdef.h>
  13. #include <mm_aspace.h>
  14. #ifdef RT_USING_OFW
  15. #include <drivers/ofw_fdt.h>
  16. #endif
  17. void rt_hw_common_setup(void);
  18. #endif /* __SETUP_H__ */