devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Replace /include/ (dtc) with #include
@ 2014-01-10 10:16 Pankaj Dubey
       [not found] ` <1389348970-5498-1-git-send-email-pankaj.dubey-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Pankaj Dubey @ 2014-01-10 10:16 UTC (permalink / raw)
  To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA
  Cc: will.deacon-5wv7dgnIgG8, catalin.marinas-5wv7dgnIgG8,
	pawel.moll-5wv7dgnIgG8, mark.rutland-5wv7dgnIgG8,
	galak-sgV2jX0FEOL9JmXXK+q4OQ, robh+dt-DgEjT+Ai2ygdnm+yROfE0A,
	Pankaj Dubey

Replace /include/ (dtc) with #include (C pre-processor) for all ARM64
based SoC dts files.

Pankaj Dubey (2):
  arm64: dts: use #include for all AppliedMicro device tree files
  arm64: dts: use #include for all ARM fast model device tree file

 arch/arm64/boot/dts/apm-mustang.dts    |    2 +-
 arch/arm64/boot/dts/rtsm_ve-aemv8a.dts |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] arm64: dts: use #include for all AppliedMicro device tree files
       [not found] ` <1389348970-5498-1-git-send-email-pankaj.dubey-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
@ 2014-01-10 10:16   ` Pankaj Dubey
  2014-01-10 10:16   ` [PATCH 2/2] arm64: dts: use #include for all ARM fast model device tree file Pankaj Dubey
  2014-01-27 11:07   ` [PATCH 0/2] Replace /include/ (dtc) with #include Pankaj Dubey
  2 siblings, 0 replies; 6+ messages in thread
From: Pankaj Dubey @ 2014-01-10 10:16 UTC (permalink / raw)
  To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA
  Cc: will.deacon-5wv7dgnIgG8, catalin.marinas-5wv7dgnIgG8,
	pawel.moll-5wv7dgnIgG8, mark.rutland-5wv7dgnIgG8,
	galak-sgV2jX0FEOL9JmXXK+q4OQ, robh+dt-DgEjT+Ai2ygdnm+yROfE0A,
	Pankaj Dubey

convert /include/ (dtc) with #include (C pre-processor) for
device tree files of AppliedMicro boards.

Signed-off-by: Pankaj Dubey <pankaj.dubey-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
---
 arch/arm64/boot/dts/apm-mustang.dts |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/apm-mustang.dts b/arch/arm64/boot/dts/apm-mustang.dts
index 1247ca1..6b5e9d2 100644
--- a/arch/arm64/boot/dts/apm-mustang.dts
+++ b/arch/arm64/boot/dts/apm-mustang.dts
@@ -11,7 +11,7 @@
 
 /dts-v1/;
 
-/include/ "apm-storm.dtsi"
+#include "apm-storm.dtsi"
 
 / {
 	model = "APM X-Gene Mustang board";
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] arm64: dts: use #include for all ARM fast model device tree file
       [not found] ` <1389348970-5498-1-git-send-email-pankaj.dubey-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
  2014-01-10 10:16   ` [PATCH 1/2] arm64: dts: use #include for all AppliedMicro device tree files Pankaj Dubey
@ 2014-01-10 10:16   ` Pankaj Dubey
  2014-01-27 11:07   ` [PATCH 0/2] Replace /include/ (dtc) with #include Pankaj Dubey
  2 siblings, 0 replies; 6+ messages in thread
From: Pankaj Dubey @ 2014-01-10 10:16 UTC (permalink / raw)
  To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA
  Cc: will.deacon-5wv7dgnIgG8, catalin.marinas-5wv7dgnIgG8,
	pawel.moll-5wv7dgnIgG8, mark.rutland-5wv7dgnIgG8,
	galak-sgV2jX0FEOL9JmXXK+q4OQ, robh+dt-DgEjT+Ai2ygdnm+yROfE0A,
	Pankaj Dubey

convert /include/ (dtc) with #include (C pre-processor) for
device tree file of ARM fast model.

Signed-off-by: Pankaj Dubey <pankaj.dubey-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
---
 arch/arm64/boot/dts/rtsm_ve-aemv8a.dts |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/rtsm_ve-aemv8a.dts b/arch/arm64/boot/dts/rtsm_ve-aemv8a.dts
index 572005e..024f51e 100644
--- a/arch/arm64/boot/dts/rtsm_ve-aemv8a.dts
+++ b/arch/arm64/boot/dts/rtsm_ve-aemv8a.dts
@@ -154,6 +154,6 @@
 				<0 0 41 &gic 0 41 4>,
 				<0 0 42 &gic 0 42 4>;
 
-		/include/ "rtsm_ve-motherboard.dtsi"
+		#include "rtsm_ve-motherboard.dtsi"
 	};
 };
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] Replace /include/ (dtc) with #include
       [not found] ` <1389348970-5498-1-git-send-email-pankaj.dubey-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
  2014-01-10 10:16   ` [PATCH 1/2] arm64: dts: use #include for all AppliedMicro device tree files Pankaj Dubey
  2014-01-10 10:16   ` [PATCH 2/2] arm64: dts: use #include for all ARM fast model device tree file Pankaj Dubey
@ 2014-01-27 11:07   ` Pankaj Dubey
       [not found]     ` <52E63DD8.9070909-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
  2 siblings, 1 reply; 6+ messages in thread
From: Pankaj Dubey @ 2014-01-27 11:07 UTC (permalink / raw)
  To: Pankaj Dubey
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA, will.deacon-5wv7dgnIgG8,
	catalin.marinas-5wv7dgnIgG8, pawel.moll-5wv7dgnIgG8,
	mark.rutland-5wv7dgnIgG8, galak-sgV2jX0FEOL9JmXXK+q4OQ,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A

On 01/10/2014 07:16 PM, Pankaj Dubey wrote:
> Replace /include/ (dtc) with #include (C pre-processor) for all ARM64
> based SoC dts files.
>
> Pankaj Dubey (2):
>    arm64: dts: use #include for all AppliedMicro device tree files
>    arm64: dts: use #include for all ARM fast model device tree file
>
>   arch/arm64/boot/dts/apm-mustang.dts    |    2 +-
>   arch/arm64/boot/dts/rtsm_ve-aemv8a.dts |    2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>
Gentle ping.

Best Regards,
Pankaj Dubey
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] Replace /include/ (dtc) with #include
       [not found]     ` <52E63DD8.9070909-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
@ 2014-01-27 16:31       ` Catalin Marinas
       [not found]         ` <20140127163111.GA8358-5wv7dgnIgG8@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Catalin Marinas @ 2014-01-27 16:31 UTC (permalink / raw)
  To: Pankaj Dubey
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Will Deacon,
	Pawel Moll, Mark Rutland,
	galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org

On Mon, Jan 27, 2014 at 11:07:04AM +0000, Pankaj Dubey wrote:
> On 01/10/2014 07:16 PM, Pankaj Dubey wrote:
> > Replace /include/ (dtc) with #include (C pre-processor) for all ARM64
> > based SoC dts files.
> >
> > Pankaj Dubey (2):
> >    arm64: dts: use #include for all AppliedMicro device tree files
> >    arm64: dts: use #include for all ARM fast model device tree file
> >
> >   arch/arm64/boot/dts/apm-mustang.dts    |    2 +-
> >   arch/arm64/boot/dts/rtsm_ve-aemv8a.dts |    2 +-
> >   2 files changed, 2 insertions(+), 2 deletions(-)
> >
> Gentle ping.

It would be good to include some rationale behind this change and I'm
waiting for the DT guys to ack it.

-- 
Catalin
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] Replace /include/ (dtc) with #include
       [not found]         ` <20140127163111.GA8358-5wv7dgnIgG8@public.gmane.org>
@ 2014-01-27 18:14           ` Rob Herring
  0 siblings, 0 replies; 6+ messages in thread
From: Rob Herring @ 2014-01-27 18:14 UTC (permalink / raw)
  To: Catalin Marinas
  Cc: Pankaj Dubey,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Will Deacon,
	Pawel Moll, Mark Rutland,
	galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org

On Mon, Jan 27, 2014 at 10:31 AM, Catalin Marinas
<catalin.marinas-5wv7dgnIgG8@public.gmane.org> wrote:
> On Mon, Jan 27, 2014 at 11:07:04AM +0000, Pankaj Dubey wrote:
>> On 01/10/2014 07:16 PM, Pankaj Dubey wrote:
>> > Replace /include/ (dtc) with #include (C pre-processor) for all ARM64
>> > based SoC dts files.
>> >
>> > Pankaj Dubey (2):
>> >    arm64: dts: use #include for all AppliedMicro device tree files
>> >    arm64: dts: use #include for all ARM fast model device tree file
>> >
>> >   arch/arm64/boot/dts/apm-mustang.dts    |    2 +-
>> >   arch/arm64/boot/dts/rtsm_ve-aemv8a.dts |    2 +-
>> >   2 files changed, 2 insertions(+), 2 deletions(-)
>> >
>> Gentle ping.
>
> It would be good to include some rationale behind this change and I'm
> waiting for the DT guys to ack it.

Change this when you actually need it.

Rob
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-01-27 18:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-10 10:16 [PATCH 0/2] Replace /include/ (dtc) with #include Pankaj Dubey
     [not found] ` <1389348970-5498-1-git-send-email-pankaj.dubey-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-01-10 10:16   ` [PATCH 1/2] arm64: dts: use #include for all AppliedMicro device tree files Pankaj Dubey
2014-01-10 10:16   ` [PATCH 2/2] arm64: dts: use #include for all ARM fast model device tree file Pankaj Dubey
2014-01-27 11:07   ` [PATCH 0/2] Replace /include/ (dtc) with #include Pankaj Dubey
     [not found]     ` <52E63DD8.9070909-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-01-27 16:31       ` Catalin Marinas
     [not found]         ` <20140127163111.GA8358-5wv7dgnIgG8@public.gmane.org>
2014-01-27 18:14           ` Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).