diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-09-14 21:22:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-09-16 22:10:51 -0400 |
commit | 3b67d91b3e2c789952379f5157704c2162330492 (patch) | |
tree | 975092e7d6b41bdab009fad27a1b9e8c5559fccc | |
parent | ea426e6c62d0f742d87451adc47e91d87b9c3d27 (diff) | |
download | linux-3.10-3b67d91b3e2c789952379f5157704c2162330492.tar.gz linux-3.10-3b67d91b3e2c789952379f5157704c2162330492.tar.bz2 linux-3.10-3b67d91b3e2c789952379f5157704c2162330492.zip |
Blackfin: fix elf_fpregset_t definition
The elf_fpregset_t type relied on an empty struct in the asm/user.h, but
the transition to asm-generic/user.h dropped that empty struct. Rather
than restore this useless struct, define the only user (elf_fpregset_t)
as an empty struct itself. This fixes building when ELF dump support is
enabled.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | arch/blackfin/include/asm/elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/elf.h b/arch/blackfin/include/asm/elf.h index 5a87baf0659..c823e8ebbfa 100644 --- a/arch/blackfin/include/asm/elf.h +++ b/arch/blackfin/include/asm/elf.h @@ -23,7 +23,7 @@ typedef unsigned long elf_greg_t; #define ELF_NGREG 40 /* (sizeof(struct user_regs_struct) / sizeof(elf_greg_t)) */ typedef elf_greg_t elf_gregset_t[ELF_NGREG]; -typedef struct user_bfinfp_struct elf_fpregset_t; +typedef struct { } elf_fpregset_t; /* * This is used to ensure we don't load something for the wrong architecture. */ |