From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755697AbbJ1KIr (ORCPT ); Wed, 28 Oct 2015 06:08:47 -0400 Received: from mail-pa0-f52.google.com ([209.85.220.52]:34295 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755239AbbJ1KIq (ORCPT ); Wed, 28 Oct 2015 06:08:46 -0400 From: Sudip Mukherjee To: Ralf Baechle Cc: linux-kernel@vger.kernel.org, Alex Smith , Markos Chandras , Matthew Fortune , Sudip Mukherjee Subject: [PATCH] MIPS: fix build failure Date: Wed, 28 Oct 2015 15:38:18 +0530 Message-Id: <1446026898-10126-1-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 --- 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 #include #include +#include #include #include -- 1.9.1