git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' into prog-loader
[lunaix-os.git]
/
lunaix-os
/
includes
/
lunaix
/
mm
/
mmio.h
1
#ifndef __LUNAIX_MMIO_H
2
#define __LUNAIX_MMIO_H
3
4
#include <lunaix/types.h>
5
6
void*
7
ioremap(uintptr_t paddr, u32_t size);
8
9
void*
10
iounmap(uintptr_t vaddr, u32_t size);
11
12
#endif /* __LUNAIX_MMIO_H */