1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2010-11-13 weety first version 9 */ 10 11 12 #include <rtthread.h> 13 #include "dm36x.h" 14 15 extern int davinci_clk_init(void); 16 17 /** 18 * @brief System Clock Configuration 19 */ rt_hw_clock_init(void)20void rt_hw_clock_init(void) 21 { 22 davinci_clk_init(); 23 } 24 25