1
0
Fork 0

Tegra: fdt: Change /include/ to #include for C preprocessor

dts Makefile has the arch & board include paths added to DTS_CPPFLAGS.
This allows the use of '#include "xyz"' in the dts/dtsi file which
helps the C preprocessor find common dtsi include files.

Signed-off-by: Tom Warren <twarren@nvidia.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
utp
Tom Warren 2013-02-21 12:31:27 +00:00 committed by Tom Warren
parent a7f8b5e616
commit 6c5be646b4
16 changed files with 17 additions and 16 deletions

View File

@ -1,4 +1,4 @@
/include/ "skeleton.dtsi"
#include "skeleton.dtsi"
/ {
compatible = "nvidia,tegra114";

View File

@ -1,4 +1,4 @@
/include/ "skeleton.dtsi"
#include "skeleton.dtsi"
/ {
compatible = "nvidia,tegra20";

View File

@ -1,4 +1,4 @@
/include/ "skeleton.dtsi"
#include "skeleton.dtsi"
/ {
compatible = "nvidia,tegra30";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "Avionic Design Medcom-Wide";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "Avionic Design Plutux";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "Avionic Design Tamonten Evaluation Carrier";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "Toshiba AC100 / Dynabook AZ";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "Compulab TrimSlice board";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include ARCH_CPU_DTS
/ {
model = "NVIDIA Dalmore";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "NVIDIA Tegra20 Harmony evaluation board";

View File

@ -1,7 +1,7 @@
/dts-v1/;
/memreserve/ 0x1c000000 0x04000000;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "NVIDIA Seaboard";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "NVIDIA Tegra20 Ventana evaluation board";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "NVIDIA Tegra20 Whistler evaluation board";

View File

@ -1,7 +1,7 @@
/dts-v1/;
/memreserve/ 0x1c000000 0x04000000;
/include/ ARCH_CPU_DTS
#include ARCH_CPU_DTS
/ {
model = "NVIDIA Cardhu";

View File

@ -1,6 +1,6 @@
/dts-v1/;
/include/ ARCH_CPU_DTS
#include "tegra20.dtsi"
/ {
model = "Toradex Colibri T20";

View File

@ -38,7 +38,8 @@ Please define CONFIG_ARCH_DEVICE_TREE))
# We preprocess the device tree file provide a useful define
DTS_CPPFLAGS := -x assembler-with-cpp \
-DARCH_CPU_DTS=\"$(SRCTREE)/arch/$(ARCH)/dts/$(CONFIG_ARCH_DEVICE_TREE).dtsi\" \
-DBOARD_DTS=\"$(SRCTREE)/board/$(VENDOR)/$(BOARD)/dts/$(DEVICE_TREE).dts\"
-DBOARD_DTS=\"$(SRCTREE)/board/$(VENDOR)/$(BOARD)/dts/$(DEVICE_TREE).dts\" \
-I$(SRCTREE)/board/$(VENDOR)/dts -I$(SRCTREE)/arch/$(ARCH)/dts
all: $(obj).depend $(LIB)