diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-09-17 12:50:27 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-09-17 12:50:57 +0100 |
commit | 4dfa33868d9f8595717047eb058322e0999691cc (patch) | |
tree | 0f4efe96659fcfbdfaf96ad9a5e596447b89445f /arch/arm | |
parent | f630c1bdfbf8fe423325beaf60027cfc7fd7c610 (diff) | |
download | linux-3.10-4dfa33868d9f8595717047eb058322e0999691cc.tar.gz linux-3.10-4dfa33868d9f8595717047eb058322e0999691cc.tar.bz2 linux-3.10-4dfa33868d9f8595717047eb058322e0999691cc.zip |
ARM: nommu: fix warning with checksyscalls.sh
CALL scripts/checksyscalls.sh
<stdin>:46:1: warning: "__IGNORE_migrate_pages" redefined
In file included from <stdin>:2:
arch/arm/include/asm/unistd.h:482:1: warning: this is the location of the previous definition
This is caused because we define __IGNORE_migrate_pages to be 1, but
in the case of nommu, it's defined to be empty. Fix this by just
defining the __IGNORE_ symbols to be empty.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/unistd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/include/asm/unistd.h b/arch/arm/include/asm/unistd.h index 2c04ed5efeb..c60a2944f95 100644 --- a/arch/arm/include/asm/unistd.h +++ b/arch/arm/include/asm/unistd.h @@ -478,8 +478,8 @@ /* * Unimplemented (or alternatively implemented) syscalls */ -#define __IGNORE_fadvise64_64 1 -#define __IGNORE_migrate_pages 1 +#define __IGNORE_fadvise64_64 +#define __IGNORE_migrate_pages #endif /* __KERNEL__ */ #endif /* __ASM_ARM_UNISTD_H */ |