tools/llvm: Do not build with symbols
[minix3.git] / minix / kernel / arch / earm / bsp / ti / omap_init.c
blob99a47b765fb8dab9123390cd505c9eae426d76e6
1 #include <sys/types.h>
2 #include "bsp_init.h"
3 #include "bsp_padconf.h"
4 #include "omap_rtc.h"
5 #include "bsp_reset.h"
7 void
8 bsp_init()
10 /* map memory for padconf */
11 bsp_padconf_init();
13 /* map memory for rtc */
14 omap3_rtc_init();
16 /* map memory for reset control */
17 bsp_reset_init();
19 /* disable watchdog */
20 bsp_disable_watchdog();