]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
dts/Makefile: Turn off some predefined macros
authorHorst Kronstorfer <hkronsto@frequentis.com>
Fri, 13 Jul 2012 03:03:40 +0000 (03:03 +0000)
committerWolfgang Denk <wd@denx.de>
Fri, 10 Aug 2012 21:54:16 +0000 (23:54 +0200)
Add '-ansi' to DTS_CPPFLAGS to avoid unwanted expansion of dts content
that matches some predefined macros.

Example: A number of PowerPC related *.dts files in the kernel define a
property named 'linux,network-index' which (w/o '-ansi') is expanded to
'1,network-index' by the preprocessor because of '#define linux 1.'

Signed-off-by: Horst Kronstorfer <hkronsto@frequentis.com>
dts/Makefile

index 50f9066115d34b66a07dcd615ab4e33816b40289..785104e6d6409aa1b956db10107e17ddc6257a6d 100644 (file)
@@ -36,7 +36,8 @@ $(error Your architecture does not have device tree support enabled. \
 Please define CONFIG_ARCH_DEVICE_TREE))
 
 # We preprocess the device tree file provide a useful define
-DTS_CPPFLAGS := -DARCH_CPU_DTS=\"$(SRCTREE)/arch/$(ARCH)/dts/$(CONFIG_ARCH_DEVICE_TREE).dtsi\" \
+DTS_CPPFLAGS := -ansi \
+               -DARCH_CPU_DTS=\"$(SRCTREE)/arch/$(ARCH)/dts/$(CONFIG_ARCH_DEVICE_TREE).dtsi\" \
                -DBOARD_DTS=\"$(SRCTREE)/board/$(VENDOR)/$(BOARD)/dts/$(DEVICE_TREE).dts\"
 
 all:   $(obj).depend $(LIB)