cacheflush.h 337 B

123456789101112
  1. #ifndef _ASM_X86_CACHEFLUSH_H
  2. #define _ASM_X86_CACHEFLUSH_H
  3. /* Caches aren't brain-dead on the intel. */
  4. #include <asm-generic/cacheflush.h>
  5. #include <asm/special_insns.h>
  6. void clflush_cache_range(void *addr, unsigned int size);
  7. #define mmio_flush_range(addr, size) clflush_cache_range(addr, size)
  8. #endif /* _ASM_X86_CACHEFLUSH_H */