static inline unsigned long virt_to_phys(volatile void * address)
{
return __pa(address);
}
static inline void * phys_to_virt(unsigned long address)
{
return __va(address);
}
'Programming > Linux_Kernel' 카테고리의 다른 글
__initdata keyword in kernel (0) | 2010.06.24 |
---|---|
linux virtual memory - Zone, Node, Section 의 개념 (0) | 2010.06.09 |
linux 에서 Movi Nand, MMC Control 흐름도 (0) | 2010.05.14 |
dd, tail 명령어 (0) | 2010.05.14 |
Device Driver - memory mapping (0) | 2010.04.27 |