• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _ASM_ARM64_VMALLOC_H
2 #define _ASM_ARM64_VMALLOC_H
3 
4 #include <asm/page.h>
5 #include <asm/pgtable.h>
6 
7 #define arch_vmap_pgprot_tagged arch_vmap_pgprot_tagged
arch_vmap_pgprot_tagged(pgprot_t prot)8 static inline pgprot_t arch_vmap_pgprot_tagged(pgprot_t prot)
9 {
10 	return pgprot_tagged(prot);
11 }
12 
13 #endif /* _ASM_ARM64_VMALLOC_H */
14