diff options
author | Michal Simek <michal.simek@xilinx.com> | 2012-12-21 10:53:40 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2013-01-03 12:47:20 +0100 |
commit | 7e278157921f95d7313ede005cb07b72b7011962 (patch) | |
tree | 938699d04ae5d9f55384660cccc5f6d88ba52003 /arch/microblaze/include | |
parent | ca073b4af90b7d2ec6fd6563bee06a68907999ad (diff) | |
download | linux-exynos-7e278157921f95d7313ede005cb07b72b7011962.tar.gz linux-exynos-7e278157921f95d7313ede005cb07b72b7011962.tar.bz2 linux-exynos-7e278157921f95d7313ede005cb07b72b7011962.zip |
microblaze: Change section flags for noMMU
All files which uses user unified macros from uaccess.h
(get_user/put_user/clear_user/copy_tofrom_user/
strnlen_user and strncpy_user) generate this
warning messages:
Assembler messages:
Warning: ignoring changed section attributes for .discard
Setting up discard executable section flang for __EX_TABLE_SECTION
macro removed all these warnings.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze/include')
-rw-r--r-- | arch/microblaze/include/asm/uaccess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/include/asm/uaccess.h b/arch/microblaze/include/asm/uaccess.h index 927540d3cb7d..a1ab5f0009ef 100644 --- a/arch/microblaze/include/asm/uaccess.h +++ b/arch/microblaze/include/asm/uaccess.h @@ -108,7 +108,7 @@ static inline int ___range_ok(unsigned long addr, unsigned long size) # define __EX_TABLE_SECTION ".section __ex_table,\"a\"\n" #else # define __FIXUP_SECTION ".section .discard,\"ax\"\n" -# define __EX_TABLE_SECTION ".section .discard,\"a\"\n" +# define __EX_TABLE_SECTION ".section .discard,\"ax\"\n" #endif extern unsigned long __copy_tofrom_user(void __user *to, |