| Ingo Molnar | 3ec9678 | 2008-04-25 18:25:25 +0200 | [diff] [blame] | 1 | #ifndef _ASM_FIXMAP_H |
| 2 | #define _ASM_FIXMAP_H | ||||
| 3 | |||||
| Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 4 | #ifdef CONFIG_X86_32 |
| 5 | # include "fixmap_32.h" | ||||
| 6 | #else | ||||
| 7 | # include "fixmap_64.h" | ||||
| 8 | #endif | ||||
| Ingo Molnar | 3ec9678 | 2008-04-25 18:25:25 +0200 | [diff] [blame] | 9 | |
| 10 | #define clear_fixmap(idx) \ | ||||
| 11 | __set_fixmap(idx, 0, __pgprot(0)) | ||||
| 12 | |||||
| 13 | #endif | ||||