public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MIPS: fix build failure
@ 2015-10-28 10:08 Sudip Mukherjee
  2015-10-28 10:18 ` Markos Chandras
  0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2015-10-28 10:08 UTC (permalink / raw)
  To: Ralf Baechle
  Cc: linux-kernel, Alex Smith, Markos Chandras, Matthew Fortune,
	Sudip Mukherjee

While building for mips defconfig the build failed with the error:
In function 'create_elf_tables':
arch/mips/include/asm/elf.h:425:14: error: 
'AT_SYSINFO_EHDR' undeclared (first use in this function)

AT_SYSINFO_EHDR is defined in uapi/asm/auxvec.h which was not included
here.

Fixes: c1fb442ade67 ("MIPS: Initial implementation of a VDSO")
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---

This patch is based on mips-for-linux-next branch.

 arch/mips/include/asm/elf.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/mips/include/asm/elf.h b/arch/mips/include/asm/elf.h
index b01a6ff..acd6da2 100644
--- a/arch/mips/include/asm/elf.h
+++ b/arch/mips/include/asm/elf.h
@@ -11,6 +11,7 @@
 #include <linux/auxvec.h>
 #include <linux/fs.h>
 #include <uapi/linux/elf.h>
+#include <uapi/asm/auxvec.h>
 
 #include <asm/cpu-info.h>
 #include <asm/current.h>
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-10-28 10:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-28 10:08 [PATCH] MIPS: fix build failure Sudip Mukherjee
2015-10-28 10:18 ` Markos Chandras
2015-10-28 10:31   ` Markos Chandras
2015-10-28 10:48     ` Sudip Mukherjee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox