From: Paul Gortmaker Date: Sat, 23 Jul 2011 20:26:41 +0000 (-0400) Subject: mips: fix implicit use of asm/elf.h in kernel/cpu-probe.c X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=06372a63e361a15fe464318f79e445a56b23d8a9;p=~shefty%2Frdma-dev.git mips: fix implicit use of asm/elf.h in kernel/cpu-probe.c We are relying on asm/elf.h being present implicitly. Once we clean up the root cause of that, we'll see this, so fix it in advance. arch/mips/kernel/cpu-probe.c: In function 'set_elf_platform': arch/mips/kernel/cpu-probe.c:298: error: '__elf_platform' undeclared (first use in this function) Signed-off-by: Paul Gortmaker --- diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index ebc0cd20b35..bc815eb952d 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include