diff options
author | Guenter Roeck <linux@roeck-us.net> | 2014-09-26 09:05:39 -0700 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-09-26 14:53:23 -0400 |
commit | 29075feaf1f55e6b1aa4054b44bc141e8d5eab0b (patch) | |
tree | a22148b9d18788137f25d3412519cd7f458b5020 /arch/openrisc | |
parent | 9eab339b197a6903043d272295dcb716ff739b21 (diff) | |
download | linux-29075feaf1f55e6b1aa4054b44bc141e8d5eab0b.tar.gz linux-29075feaf1f55e6b1aa4054b44bc141e8d5eab0b.tar.bz2 linux-29075feaf1f55e6b1aa4054b44bc141e8d5eab0b.zip |
next: openrisc: Fix build
openrisc:defconfig fails to build in next-20140926 with the following error.
In file included from arch/openrisc/kernel/signal.c:31:0:
./arch/openrisc/include/asm/syscall.h: In function 'syscall_get_arch':
./arch/openrisc/include/asm/syscall.h:77:9: error: 'EM_OPENRISC' undeclared
Fix by moving EM_OPENRISC to include/uapi/linux/elf-em.h.
Fixes: ce5d112827e5 ("ARCH: AUDIT: implement syscall_get_arch for all arches")
Cc: Eric Paris <eparis@redhat.com>
Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'arch/openrisc')
-rw-r--r-- | arch/openrisc/include/uapi/asm/elf.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/openrisc/include/uapi/asm/elf.h b/arch/openrisc/include/uapi/asm/elf.h index f02ea5830420..88842760e66f 100644 --- a/arch/openrisc/include/uapi/asm/elf.h +++ b/arch/openrisc/include/uapi/asm/elf.h @@ -55,9 +55,8 @@ typedef elf_greg_t elf_gregset_t[ELF_NGREG]; /* A placeholder; OR32 does not have fp support yes, so no fp regs for now. */ typedef unsigned long elf_fpregset_t; -/* This should be moved to include/linux/elf.h */ +/* EM_OPENRISC is defined in linux/elf-em.h */ #define EM_OR32 0x8472 -#define EM_OPENRISC 92 /* OpenRISC 32-bit embedded processor */ /* * These are used to set parameters in the core dumps. |