• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/include/asm/
1#include <asm-generic/mman.h>
2
3#define MIN_MAP_ADDR	PAGE_SIZE	/* minimum fixed mmap address */
4
5#define arch_mmap_check(addr, len, flags) \
6	(((flags) & MAP_FIXED && (addr) < MIN_MAP_ADDR) ? -EINVAL : 0)
7