repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make vfs & filesystems use failable copying
[minix3.git]
/
kernel
/
arch
/
earm
/
bsp
/
ti
/
omap_init.c
blob
1d54bfecaa671e2ae0748a8afe72c7c8555f4eab
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"
6
7
void
8
bsp_init
()
9
{
10
/* map memory for padconf */
11
bsp_padconf_init
();
12
13
/* map memory for rtc */
14
omap3_rtc_init
();
15
16
/* map memory for reset control */
17
bsp_reset_init
();
18
}