fixmap.h 201 B

12345678910111213
  1. #ifndef _ASM_FIXMAP_H
  2. #define _ASM_FIXMAP_H
  3. #ifdef CONFIG_X86_32
  4. # include "fixmap_32.h"
  5. #else
  6. # include "fixmap_64.h"
  7. #endif
  8. #define clear_fixmap(idx) \
  9. __set_fixmap(idx, 0, __pgprot(0))
  10. #endif