[ARM] 4496/1: elf_hwcap: fix up #include misplacement

While bisecting an iop13xx compile failure I noticed that
include/asm-arm/hwcap.h should be included from include/asm-arm/elf.h
outside #ifndef __ASSEMBLY__ since hwcap.h has its own __ASSEMBLY__
protections.

Cc: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Dan Williams and committed by Russell King f393e99d 48da78bc

+2 -1
+2 -1
include/asm-arm/elf.h
··· 1 1 #ifndef __ASMARM_ELF_H 2 2 #define __ASMARM_ELF_H 3 3 4 + #include <asm/hwcap.h> 5 + 4 6 #ifndef __ASSEMBLY__ 5 7 /* 6 8 * ELF register definitions.. 7 9 */ 8 10 #include <asm/ptrace.h> 9 11 #include <asm/user.h> 10 - #include <asm/hwcap.h> 11 12 12 13 typedef unsigned long elf_greg_t; 13 14 typedef unsigned long elf_freg_t[3];