fixmap.h 201 字节
Newer Older
1 2 3
#ifndef _ASM_FIXMAP_H
#define _ASM_FIXMAP_H

4 5 6 7 8
#ifdef CONFIG_X86_32
# include "fixmap_32.h"
#else
# include "fixmap_64.h"
#endif
9 10 11 12 13

#define clear_fixmap(idx)			\
	__set_fixmap(idx, 0, __pgprot(0))

#endif