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-Tag: v3.2-rc1~22^2~169 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=06372a63e361a15fe464318f79e445a56b23d8a9;p=cascardo%2Flinux.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 ebc0cd20b35d..bc815eb952df 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