open_map.h
616 Bytes
/**
@file open_map.c
@date 2014/01/20
@author 오재경 freefrug@falinux.com FALinux.Co.,Ltd.
@brief * mmap 유틸리티이다.
Ver 0.2.0
@modify
@todo
@bug
@remark
*/
//----------------------------------------------------------------------------
#ifndef _OPEN_MMAP_H_
#define _OPEN_MMAP_H_
#ifdef __cplusplus
extern "C" {
#endif
extern void *open_mmap_alloc( unsigned long phys_base, unsigned long size );
extern void open_mmap_free ( void *io_virt );
#ifdef __cplusplus
}
#endif
#endif // _OPEN_MMAP_H_