Sfoglia il codice sorgente

ARM: 8716/1: pass endianness info to sparse

ARM depends on the macros '__ARMEL__' & '__ARMEB__' being defined
or not to correctly select or define endian-specific macros,
structures or pieces of code.

These macros are predefined by the compiler but sparse knows
nothing about them and thus may pre-process files differently
from what gcc would.

Fix this by passing '-D__ARMEL__' or '-D__ARMEB__' to sparse,
depending on the endianness of the kernel, like defined by GCC.

Note: In most case it won't change anything since most ARMs use
      little-endian (but an allyesconfig would use big-endian!).

To: Russell King <linux@armlinux.org.uk>

Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Luc Van Oostenryck 7 anni fa
parent
commit
ff0c6eecef
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      arch/arm/Makefile

+ 2 - 0
arch/arm/Makefile

@@ -44,10 +44,12 @@ endif
 
 
 ifeq ($(CONFIG_CPU_BIG_ENDIAN),y)
 ifeq ($(CONFIG_CPU_BIG_ENDIAN),y)
 KBUILD_CPPFLAGS	+= -mbig-endian
 KBUILD_CPPFLAGS	+= -mbig-endian
+CHECKFLAGS	+= -D__ARMEB__
 AS		+= -EB
 AS		+= -EB
 LD		+= -EB
 LD		+= -EB
 else
 else
 KBUILD_CPPFLAGS	+= -mlittle-endian
 KBUILD_CPPFLAGS	+= -mlittle-endian
+CHECKFLAGS	+= -D__ARMEL__
 AS		+= -EL
 AS		+= -EL
 LD		+= -EL
 LD		+= -EL
 endif
 endif