From: Jaswinder Singh Rajput <jaswinderrajput@gmail.com> Date: Sat, 31 Jan 2009 06:12:29 +0000 (+0530) Subject: headers_check fix: powerpc, elf.h X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=785857f5f0b7fbeed934e39af24edec471637375;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git headers_check fix: powerpc, elf.h fix the following 'make headers_check' warning: usr/include/asm-powerpc/elf.h:5: include of <linux/types.h> is preferred over <asm/types.h> Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com> --- diff --git a/arch/powerpc/include/asm/elf.h b/arch/powerpc/include/asm/elf.h index cd46f023ec6d..b5600ce6055e 100644 --- a/arch/powerpc/include/asm/elf.h +++ b/arch/powerpc/include/asm/elf.h @@ -7,7 +7,7 @@ #include <asm/string.h> #endif -#include <asm/types.h> +#include <linux/types.h> #include <asm/ptrace.h> #include <asm/cputable.h> #include <asm/auxvec.h>