summaryrefslogtreecommitdiff
path: root/dts/Makefile
diff options
context:
space:
mode:
authorHorst Kronstorfer <hkronsto@frequentis.com>2012-07-13 03:03:40 +0000
committerWolfgang Denk <wd@denx.de>2012-08-10 23:54:16 +0200
commitb4f106be2d8a4eb34ce41c5306d5a4fcc37e60e3 (patch)
treea15317a93b315d1a75d1a5e373df2dc3f96ed531 /dts/Makefile
parent8fde2f3a95c555903b54249f6d7ccab859ee2d6f (diff)
dts/Makefile: Turn off some predefined macros
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>
Diffstat (limited to 'dts/Makefile')
-rw-r--r--dts/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/dts/Makefile b/dts/Makefile
index 50f9066115..785104e6d6 100644
--- a/dts/Makefile
+++ b/dts/Makefile
@@ -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)