mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
3ec96783e3
Signed-off-by: Ingo Molnar <mingo@elte.hu>
14 lines
201 B
C
14 lines
201 B
C
#ifndef _ASM_FIXMAP_H
|
|
#define _ASM_FIXMAP_H
|
|
|
|
#ifdef CONFIG_X86_32
|
|
# include "fixmap_32.h"
|
|
#else
|
|
# include "fixmap_64.h"
|
|
#endif
|
|
|
|
#define clear_fixmap(idx) \
|
|
__set_fixmap(idx, 0, __pgprot(0))
|
|
|
|
#endif
|