* [PATCH 0/2] ARM: dts: Correct SCU unit address
@ 2018-06-26 7:50 Geert Uytterhoeven
2018-06-26 7:50 ` [PATCH 1/2] ARM: dts: ux500: " Geert Uytterhoeven
2018-06-26 7:50 ` [PATCH 2/2] dt-bindings: arm: scu: Correct example SCU unit addresses Geert Uytterhoeven
0 siblings, 2 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-06-26 7:50 UTC (permalink / raw)
To: Rob Herring, Mark Rutland, Linus Walleij
Cc: devicetree, Geert Uytterhoeven, linux-arm-kernel
Hi All,
This patch series fixes the unit address for the SCU node in the ux500
DT source, which has spread to the UX500 and generic ARM DT bindings.
Thanks!
Geert Uytterhoeven (2):
ARM: dts: ux500: Correct SCU unit address
dt-bindings: arm: scu: Correct example SCU unit addresses
Documentation/devicetree/bindings/arm/scu.txt | 2 +-
Documentation/devicetree/bindings/arm/ux500/boards.txt | 2 +-
arch/arm/boot/dts/ste-dbx5x0.dtsi | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
--
2.17.1
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 1/2] ARM: dts: ux500: Correct SCU unit address
2018-06-26 7:50 [PATCH 0/2] ARM: dts: Correct SCU unit address Geert Uytterhoeven
@ 2018-06-26 7:50 ` Geert Uytterhoeven
2018-06-29 12:39 ` Linus Walleij
2018-06-26 7:50 ` [PATCH 2/2] dt-bindings: arm: scu: Correct example SCU unit addresses Geert Uytterhoeven
1 sibling, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-06-26 7:50 UTC (permalink / raw)
To: Rob Herring, Mark Rutland, Linus Walleij
Cc: devicetree, Geert Uytterhoeven, linux-arm-kernel
The unit address of the Cortex-A9 SCU device node contains one zero too
many. Remove it.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
arch/arm/boot/dts/ste-dbx5x0.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/ste-dbx5x0.dtsi b/arch/arm/boot/dts/ste-dbx5x0.dtsi
index 2310a4e97768c222..3dc0028e108b3d49 100644
--- a/arch/arm/boot/dts/ste-dbx5x0.dtsi
+++ b/arch/arm/boot/dts/ste-dbx5x0.dtsi
@@ -197,7 +197,7 @@
<0xa0410100 0x100>;
};
- scu@a04100000 {
+ scu@a0410000 {
compatible = "arm,cortex-a9-scu";
reg = <0xa0410000 0x100>;
};
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2] dt-bindings: arm: scu: Correct example SCU unit addresses
2018-06-26 7:50 [PATCH 0/2] ARM: dts: Correct SCU unit address Geert Uytterhoeven
2018-06-26 7:50 ` [PATCH 1/2] ARM: dts: ux500: " Geert Uytterhoeven
@ 2018-06-26 7:50 ` Geert Uytterhoeven
2018-06-29 12:40 ` Linus Walleij
1 sibling, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-06-26 7:50 UTC (permalink / raw)
To: Rob Herring, Mark Rutland, Linus Walleij
Cc: devicetree, Geert Uytterhoeven, linux-arm-kernel
The unit addresses of the Cortex-A9 SCU device nodes contain too many
zeroes. Remove them.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
Documentation/devicetree/bindings/arm/scu.txt | 2 +-
Documentation/devicetree/bindings/arm/ux500/boards.txt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/arm/scu.txt b/Documentation/devicetree/bindings/arm/scu.txt
index 08a587875996b47c..74d0a780ce511998 100644
--- a/Documentation/devicetree/bindings/arm/scu.txt
+++ b/Documentation/devicetree/bindings/arm/scu.txt
@@ -22,7 +22,7 @@ References:
Example:
-scu@a04100000 {
+scu@a0410000 {
compatible = "arm,cortex-a9-scu";
reg = <0xa0410000 0x100>;
};
diff --git a/Documentation/devicetree/bindings/arm/ux500/boards.txt b/Documentation/devicetree/bindings/arm/ux500/boards.txt
index 0fa429534f4910f7..89408de55bfd2a62 100644
--- a/Documentation/devicetree/bindings/arm/ux500/boards.txt
+++ b/Documentation/devicetree/bindings/arm/ux500/boards.txt
@@ -60,7 +60,7 @@ Example:
<0xa0410100 0x100>;
};
- scu@a04100000 {
+ scu@a0410000 {
compatible = "arm,cortex-a9-scu";
reg = <0xa0410000 0x100>;
};
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-06-29 12:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-26 7:50 [PATCH 0/2] ARM: dts: Correct SCU unit address Geert Uytterhoeven
2018-06-26 7:50 ` [PATCH 1/2] ARM: dts: ux500: " Geert Uytterhoeven
2018-06-29 12:39 ` Linus Walleij
2018-06-26 7:50 ` [PATCH 2/2] dt-bindings: arm: scu: Correct example SCU unit addresses Geert Uytterhoeven
2018-06-29 12:40 ` Linus Walleij
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).