mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 17:02:46 -04:00
15 lines
392 B
C
15 lines
392 B
C
/*
|
|
* S390 version
|
|
*
|
|
* Derived from "include/asm-i386/mman.h"
|
|
*/
|
|
#ifndef __S390_MMAN_H__
|
|
#define __S390_MMAN_H__
|
|
|
|
#include <uapi/asm/mman.h>
|
|
|
|
#if !defined(__ASSEMBLY__) && defined(CONFIG_64BIT)
|
|
int s390_mmap_check(unsigned long addr, unsigned long len, unsigned long flags);
|
|
#define arch_mmap_check(addr, len, flags) s390_mmap_check(addr, len, flags)
|
|
#endif
|
|
#endif /* __S390_MMAN_H__ */
|