* [PATCH v2 1/6] ARM: dts: keystone: drop address and size cells from GIC node
@ 2014-04-14 14:18 Lucas Stach
[not found] ` <1397485098-19198-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Lucas Stach @ 2014-04-14 14:18 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Cc: Magnus Damm, Simon Horman, Dinh Nguyen, Michal Simek, Rob Herring,
Srinivas Kandagatla, Maxime Coquelin,
kernel-F5mvAk5X5gdBDgjK7y7TUQ, Mark Rutland, Ian Campbell,
devicetree-u79uwXL29TY76Z2rM5mHXA
This is likely a copy-and-paste error from the
ARM GIC documentation, that has already been fixed.
address-cells should have been set to 0, as with the size
cells. As having those properties set to 0 is the
same thing as not specifying them, drop them completely.
Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
---
v2: no change, added ack
---
arch/arm/boot/dts/keystone.dtsi | 2 --
1 file changed, 2 deletions(-)
diff --git a/arch/arm/boot/dts/keystone.dtsi b/arch/arm/boot/dts/keystone.dtsi
index 90823eb90c1b..d0b0266d8922 100644
--- a/arch/arm/boot/dts/keystone.dtsi
+++ b/arch/arm/boot/dts/keystone.dtsi
@@ -28,8 +28,6 @@
gic: interrupt-controller {
compatible = "arm,cortex-a15-gic";
#interrupt-cells = <3>;
- #size-cells = <0>;
- #address-cells = <1>;
interrupt-controller;
reg = <0x0 0x02561000 0x0 0x1000>,
<0x0 0x02562000 0x0 0x2000>,
--
1.9.1
--
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] 8+ messages in thread
* [PATCH v2 2/6] ARM: dts: highbank,ecx-2000: drop address and size cells from GIC node
[not found] ` <1397485098-19198-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
@ 2014-04-14 14:18 ` Lucas Stach
2014-04-14 14:18 ` [PATCH v2 3/6] ARM: dts: zynq: drop address " Lucas Stach
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Lucas Stach @ 2014-04-14 14:18 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Cc: Magnus Damm, Simon Horman, Dinh Nguyen, Michal Simek, Rob Herring,
Srinivas Kandagatla, Maxime Coquelin,
kernel-F5mvAk5X5gdBDgjK7y7TUQ, Mark Rutland, Ian Campbell,
devicetree-u79uwXL29TY76Z2rM5mHXA
This is likely a copy-and-paste error from the
ARM GIC documentation, that has already been fixed.
address-cells should have been set to 0, as with the size
cells. As having those properties set to 0 is the
same thing as not specifying them, drop them completely.
Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
---
v2: no change, added ack
---
arch/arm/boot/dts/ecx-2000.dts | 2 --
arch/arm/boot/dts/highbank.dts | 2 --
2 files changed, 4 deletions(-)
diff --git a/arch/arm/boot/dts/ecx-2000.dts b/arch/arm/boot/dts/ecx-2000.dts
index 2ccbb57fbfa8..cdb7b264b7fb 100644
--- a/arch/arm/boot/dts/ecx-2000.dts
+++ b/arch/arm/boot/dts/ecx-2000.dts
@@ -94,8 +94,6 @@
intc: interrupt-controller@fff11000 {
compatible = "arm,cortex-a15-gic";
#interrupt-cells = <3>;
- #size-cells = <0>;
- #address-cells = <1>;
interrupt-controller;
interrupts = <1 9 0xf04>;
reg = <0xfff11000 0x1000>,
diff --git a/arch/arm/boot/dts/highbank.dts b/arch/arm/boot/dts/highbank.dts
index ed14aeac0566..85e1a05b8a9c 100644
--- a/arch/arm/boot/dts/highbank.dts
+++ b/arch/arm/boot/dts/highbank.dts
@@ -109,8 +109,6 @@
intc: interrupt-controller@fff11000 {
compatible = "arm,cortex-a9-gic";
#interrupt-cells = <3>;
- #size-cells = <0>;
- #address-cells = <1>;
interrupt-controller;
reg = <0xfff11000 0x1000>,
<0xfff10100 0x100>;
--
1.9.1
--
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] 8+ messages in thread
* [PATCH v2 3/6] ARM: dts: zynq: drop address cells from GIC node
[not found] ` <1397485098-19198-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2014-04-14 14:18 ` [PATCH v2 2/6] ARM: dts: highbank,ecx-2000: " Lucas Stach
@ 2014-04-14 14:18 ` Lucas Stach
2014-04-14 14:18 ` [PATCH v2 4/6] ARM: dts: ste-dbx: " Lucas Stach
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Lucas Stach @ 2014-04-14 14:18 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Cc: Magnus Damm, Simon Horman, Dinh Nguyen, Michal Simek, Rob Herring,
Srinivas Kandagatla, Maxime Coquelin,
kernel-F5mvAk5X5gdBDgjK7y7TUQ, Mark Rutland, Ian Campbell,
devicetree-u79uwXL29TY76Z2rM5mHXA
This is likely a copy-and-paste error from the
ARM GIC documentation, that has already been fixed.
address-cells should have been set to 0, as with the size
cells. As having those properties set to 0 is the
same thing as not specifying them, drop them completely.
Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
---
v2: no change, added ack
---
arch/arm/boot/dts/zynq-7000.dtsi | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/boot/dts/zynq-7000.dtsi b/arch/arm/boot/dts/zynq-7000.dtsi
index 511180769af5..3f277c2bc19c 100644
--- a/arch/arm/boot/dts/zynq-7000.dtsi
+++ b/arch/arm/boot/dts/zynq-7000.dtsi
@@ -57,7 +57,6 @@
intc: interrupt-controller@f8f01000 {
compatible = "arm,cortex-a9-gic";
#interrupt-cells = <3>;
- #address-cells = <1>;
interrupt-controller;
reg = <0xF8F01000 0x1000>,
<0xF8F00100 0x100>;
--
1.9.1
--
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] 8+ messages in thread
* [PATCH v2 4/6] ARM: dts: ste-dbx: drop address cells from GIC node
[not found] ` <1397485098-19198-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2014-04-14 14:18 ` [PATCH v2 2/6] ARM: dts: highbank,ecx-2000: " Lucas Stach
2014-04-14 14:18 ` [PATCH v2 3/6] ARM: dts: zynq: drop address " Lucas Stach
@ 2014-04-14 14:18 ` Lucas Stach
2014-04-14 14:18 ` [PATCH v2 5/6] ARM: shmobile: r8a7740: " Lucas Stach
2014-04-14 14:18 ` [PATCH v2 6/6] ARM: shmobile: sh73a0: " Lucas Stach
4 siblings, 0 replies; 8+ messages in thread
From: Lucas Stach @ 2014-04-14 14:18 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Cc: Magnus Damm, Simon Horman, Dinh Nguyen, Michal Simek, Rob Herring,
Srinivas Kandagatla, Maxime Coquelin,
kernel-F5mvAk5X5gdBDgjK7y7TUQ, Mark Rutland, Ian Campbell,
devicetree-u79uwXL29TY76Z2rM5mHXA
This is likely a copy-and-paste error from the
ARM GIC documentation, that has already been fixed.
address-cells should have been set to 0, as with the size
cells. As having those properties set to 0 is the
same thing as not specifying them, drop them completely.
Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
---
v2: no change, added ack
---
arch/arm/boot/dts/ste-dbx5x0.dtsi | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/boot/dts/ste-dbx5x0.dtsi b/arch/arm/boot/dts/ste-dbx5x0.dtsi
index e41eedca3ce3..c73414d3fe50 100644
--- a/arch/arm/boot/dts/ste-dbx5x0.dtsi
+++ b/arch/arm/boot/dts/ste-dbx5x0.dtsi
@@ -24,7 +24,6 @@
intc: interrupt-controller@a0411000 {
compatible = "arm,cortex-a9-gic";
#interrupt-cells = <3>;
- #address-cells = <1>;
interrupt-controller;
reg = <0xa0411000 0x1000>,
<0xa0410100 0x100>;
--
1.9.1
--
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] 8+ messages in thread
* [PATCH v2 5/6] ARM: shmobile: r8a7740: drop address cells from GIC node
[not found] ` <1397485098-19198-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
` (2 preceding siblings ...)
2014-04-14 14:18 ` [PATCH v2 4/6] ARM: dts: ste-dbx: " Lucas Stach
@ 2014-04-14 14:18 ` Lucas Stach
[not found] ` <1397485098-19198-5-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2014-04-14 14:18 ` [PATCH v2 6/6] ARM: shmobile: sh73a0: " Lucas Stach
4 siblings, 1 reply; 8+ messages in thread
From: Lucas Stach @ 2014-04-14 14:18 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Cc: Magnus Damm, Simon Horman, Dinh Nguyen, Michal Simek, Rob Herring,
Srinivas Kandagatla, Maxime Coquelin,
kernel-F5mvAk5X5gdBDgjK7y7TUQ, Mark Rutland, Ian Campbell,
devicetree-u79uwXL29TY76Z2rM5mHXA
This is likely a copy-and-paste error from the
ARM GIC documentation, that has already been fixed.
address-cells should have been set to 0, as with the size
cells. As having those properties set to 0 is the
same thing as not specifying them, drop them completely.
Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
---
v2: split patch, added ack
---
arch/arm/boot/dts/r8a7740.dtsi | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/boot/dts/r8a7740.dtsi b/arch/arm/boot/dts/r8a7740.dtsi
index 8280884bfa59..2551e9438d35 100644
--- a/arch/arm/boot/dts/r8a7740.dtsi
+++ b/arch/arm/boot/dts/r8a7740.dtsi
@@ -28,7 +28,6 @@
gic: interrupt-controller@c2800000 {
compatible = "arm,cortex-a9-gic";
#interrupt-cells = <3>;
- #address-cells = <1>;
interrupt-controller;
reg = <0xc2800000 0x1000>,
<0xc2000000 0x1000>;
--
1.9.1
--
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] 8+ messages in thread
* [PATCH v2 6/6] ARM: shmobile: sh73a0: drop address cells from GIC node
[not found] ` <1397485098-19198-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
` (3 preceding siblings ...)
2014-04-14 14:18 ` [PATCH v2 5/6] ARM: shmobile: r8a7740: " Lucas Stach
@ 2014-04-14 14:18 ` Lucas Stach
[not found] ` <1397485098-19198-6-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
4 siblings, 1 reply; 8+ messages in thread
From: Lucas Stach @ 2014-04-14 14:18 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Cc: Magnus Damm, Simon Horman, Dinh Nguyen, Michal Simek, Rob Herring,
Srinivas Kandagatla, Maxime Coquelin,
kernel-F5mvAk5X5gdBDgjK7y7TUQ, Mark Rutland, Ian Campbell,
devicetree-u79uwXL29TY76Z2rM5mHXA
This is likely a copy-and-paste error from the
ARM GIC documentation, that has already been fixed.
address-cells should have been set to 0, as with the size
cells. As having those properties set to 0 is the
same thing as not specifying them, drop them completely.
Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
---
v2: split patch, added ack
---
arch/arm/boot/dts/sh73a0.dtsi | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/boot/dts/sh73a0.dtsi b/arch/arm/boot/dts/sh73a0.dtsi
index b7bd3b9a6753..5ecf552e1c00 100644
--- a/arch/arm/boot/dts/sh73a0.dtsi
+++ b/arch/arm/boot/dts/sh73a0.dtsi
@@ -34,7 +34,6 @@
gic: interrupt-controller@f0001000 {
compatible = "arm,cortex-a9-gic";
#interrupt-cells = <3>;
- #address-cells = <1>;
interrupt-controller;
reg = <0xf0001000 0x1000>,
<0xf0000100 0x100>;
--
1.9.1
--
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] 8+ messages in thread
* Re: [PATCH v2 6/6] ARM: shmobile: sh73a0: drop address cells from GIC node
[not found] ` <1397485098-19198-6-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
@ 2014-04-14 22:38 ` Simon Horman
0 siblings, 0 replies; 8+ messages in thread
From: Simon Horman @ 2014-04-14 22:38 UTC (permalink / raw)
To: Lucas Stach
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Magnus Damm,
Dinh Nguyen, Michal Simek, Rob Herring, Srinivas Kandagatla,
Maxime Coquelin, kernel-F5mvAk5X5gdBDgjK7y7TUQ, Mark Rutland,
Ian Campbell, devicetree-u79uwXL29TY76Z2rM5mHXA
On Mon, Apr 14, 2014 at 04:18:18PM +0200, Lucas Stach wrote:
> This is likely a copy-and-paste error from the
> ARM GIC documentation, that has already been fixed.
>
> address-cells should have been set to 0, as with the size
> cells. As having those properties set to 0 is the
> same thing as not specifying them, drop them completely.
>
> Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
> ---
> v2: split patch, added ack
Thanks, I have queued this up as a fix for v3.15.
> ---
> arch/arm/boot/dts/sh73a0.dtsi | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/sh73a0.dtsi b/arch/arm/boot/dts/sh73a0.dtsi
> index b7bd3b9a6753..5ecf552e1c00 100644
> --- a/arch/arm/boot/dts/sh73a0.dtsi
> +++ b/arch/arm/boot/dts/sh73a0.dtsi
> @@ -34,7 +34,6 @@
> gic: interrupt-controller@f0001000 {
> compatible = "arm,cortex-a9-gic";
> #interrupt-cells = <3>;
> - #address-cells = <1>;
> interrupt-controller;
> reg = <0xf0001000 0x1000>,
> <0xf0000100 0x100>;
> --
> 1.9.1
>
--
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] 8+ messages in thread
* Re: [PATCH v2 5/6] ARM: shmobile: r8a7740: drop address cells from GIC node
[not found] ` <1397485098-19198-5-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
@ 2014-04-14 22:38 ` Simon Horman
0 siblings, 0 replies; 8+ messages in thread
From: Simon Horman @ 2014-04-14 22:38 UTC (permalink / raw)
To: Lucas Stach
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Magnus Damm,
Dinh Nguyen, Michal Simek, Rob Herring, Srinivas Kandagatla,
Maxime Coquelin, kernel-F5mvAk5X5gdBDgjK7y7TUQ, Mark Rutland,
Ian Campbell, devicetree-u79uwXL29TY76Z2rM5mHXA
On Mon, Apr 14, 2014 at 04:18:17PM +0200, Lucas Stach wrote:
> This is likely a copy-and-paste error from the
> ARM GIC documentation, that has already been fixed.
>
> address-cells should have been set to 0, as with the size
> cells. As having those properties set to 0 is the
> same thing as not specifying them, drop them completely.
Thanks, I have queued this up as a fix for v3.15.
>
> Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
> ---
> v2: split patch, added ack
> ---
> arch/arm/boot/dts/r8a7740.dtsi | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/r8a7740.dtsi b/arch/arm/boot/dts/r8a7740.dtsi
> index 8280884bfa59..2551e9438d35 100644
> --- a/arch/arm/boot/dts/r8a7740.dtsi
> +++ b/arch/arm/boot/dts/r8a7740.dtsi
> @@ -28,7 +28,6 @@
> gic: interrupt-controller@c2800000 {
> compatible = "arm,cortex-a9-gic";
> #interrupt-cells = <3>;
> - #address-cells = <1>;
> interrupt-controller;
> reg = <0xc2800000 0x1000>,
> <0xc2000000 0x1000>;
> --
> 1.9.1
>
--
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] 8+ messages in thread
end of thread, other threads:[~2014-04-14 22:38 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-14 14:18 [PATCH v2 1/6] ARM: dts: keystone: drop address and size cells from GIC node Lucas Stach
[not found] ` <1397485098-19198-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2014-04-14 14:18 ` [PATCH v2 2/6] ARM: dts: highbank,ecx-2000: " Lucas Stach
2014-04-14 14:18 ` [PATCH v2 3/6] ARM: dts: zynq: drop address " Lucas Stach
2014-04-14 14:18 ` [PATCH v2 4/6] ARM: dts: ste-dbx: " Lucas Stach
2014-04-14 14:18 ` [PATCH v2 5/6] ARM: shmobile: r8a7740: " Lucas Stach
[not found] ` <1397485098-19198-5-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2014-04-14 22:38 ` Simon Horman
2014-04-14 14:18 ` [PATCH v2 6/6] ARM: shmobile: sh73a0: " Lucas Stach
[not found] ` <1397485098-19198-6-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2014-04-14 22:38 ` Simon Horman
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).