linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 0/4] DT: Fix spelling of standard properties
@ 2018-07-06  8:32 Geert Uytterhoeven
  2018-07-06  8:32 ` [PATCH v5 1/4] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-07-06  8:32 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, David S . Miller, Chanho Min
  Cc: Neil Armstrong, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, netdev, linux-kernel, Geert Uytterhoeven

	Hi all,

This patch series fixes misspellings of various standard DT properties
in DT binding documentation, DTS files, and examples.
While most of these are harmless, some of them may cause hard-to-debug
failures.

Changes compared to v5:
  - Add Acked-by.

Changes compared to v4:
  - Drop patches that have been applied already,
  - Add Acked-by.

Changes compared to v3:
  - Drop patches that have been applied already,
  - Add Acked-by,
  - Add new patches 5 and 6.

Changes compared to v2:
  - Drop patches that have been applied already,
  - Add Rob Herring's Acked-by,
  - Add new patch "[PATCH v2 3/6] arm64: dts: lg1313: DT fix
    s/#interrupts-cells/#interrupt-cells/".

Thanks for applying!

Geert Uytterhoeven (4):
  arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/
  arm64: dts: lg1313: DT fix s/#interrupts-cells/#interrupt-cells/
  dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/
  dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/

 .../devicetree/bindings/display/amlogic,meson-dw-hdmi.txt       | 2 +-
 Documentation/devicetree/bindings/net/btusb.txt                 | 2 +-
 arch/arm64/boot/dts/lg/lg1312.dtsi                              | 2 +-
 arch/arm64/boot/dts/lg/lg1313.dtsi                              | 2 +-
 4 files changed, 4 insertions(+), 4 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 v5 1/4] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/
  2018-07-06  8:32 [PATCH v5 0/4] DT: Fix spelling of standard properties Geert Uytterhoeven
@ 2018-07-06  8:32 ` Geert Uytterhoeven
  2018-07-06  8:32 ` [PATCH v5 2/4] arm64: dts: lg1313: " Geert Uytterhoeven
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-07-06  8:32 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, David S . Miller, Chanho Min
  Cc: Neil Armstrong, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, netdev, linux-kernel, Geert Uytterhoeven

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Chanho Min <chanho.min@lge.com>
---
v3:
  - Add Acked-by,

v2:
  - Add Acked-by,
  - Rebased.
---
 arch/arm64/boot/dts/lg/lg1312.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/lg/lg1312.dtsi b/arch/arm64/boot/dts/lg/lg1312.dtsi
index 860c8fb10795011f..052c8a1906ae737e 100644
--- a/arch/arm64/boot/dts/lg/lg1312.dtsi
+++ b/arch/arm64/boot/dts/lg/lg1312.dtsi
@@ -124,7 +124,7 @@
 	amba {
 		#address-cells = <2>;
 		#size-cells = <1>;
-		#interrupts-cells = <3>;
+		#interrupt-cells = <3>;
 
 		compatible = "simple-bus";
 		interrupt-parent = <&gic>;
-- 
2.17.1


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

* [PATCH v5 2/4] arm64: dts: lg1313: DT fix s/#interrupts-cells/#interrupt-cells/
  2018-07-06  8:32 [PATCH v5 0/4] DT: Fix spelling of standard properties Geert Uytterhoeven
  2018-07-06  8:32 ` [PATCH v5 1/4] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
@ 2018-07-06  8:32 ` Geert Uytterhoeven
  2018-07-06  8:32 ` [PATCH v5 3/4] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/ Geert Uytterhoeven
  2018-07-06  8:32 ` [PATCH v5 4/4] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/ Geert Uytterhoeven
  3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-07-06  8:32 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, David S . Miller, Chanho Min
  Cc: Neil Armstrong, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, netdev, linux-kernel, Geert Uytterhoeven

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Chanho Min <chanho.min@lge.com>
---
v3:
  - Add Acked-by,

v2:
  - New.
---
 arch/arm64/boot/dts/lg/lg1313.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/lg/lg1313.dtsi b/arch/arm64/boot/dts/lg/lg1313.dtsi
index 1887af654a7db966..fb1f5252977da967 100644
--- a/arch/arm64/boot/dts/lg/lg1313.dtsi
+++ b/arch/arm64/boot/dts/lg/lg1313.dtsi
@@ -124,7 +124,7 @@
 	amba {
 		#address-cells = <2>;
 		#size-cells = <1>;
-		#interrupts-cells = <3>;
+		#interrupt-cells = <3>;
 
 		compatible = "simple-bus";
 		interrupt-parent = <&gic>;
-- 
2.17.1


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

* [PATCH v5 3/4] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/
  2018-07-06  8:32 [PATCH v5 0/4] DT: Fix spelling of standard properties Geert Uytterhoeven
  2018-07-06  8:32 ` [PATCH v5 1/4] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
  2018-07-06  8:32 ` [PATCH v5 2/4] arm64: dts: lg1313: " Geert Uytterhoeven
@ 2018-07-06  8:32 ` Geert Uytterhoeven
  2018-07-06  8:32 ` [PATCH v5 4/4] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/ Geert Uytterhoeven
  3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-07-06  8:32 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, David S . Miller, Chanho Min
  Cc: Neil Armstrong, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, netdev, linux-kernel, Geert Uytterhoeven

Fixes: 8cceda5349377e30 ("dt-bindings: Add bindings for the Amlogic Meson dw-hdmi extension")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
---
v5:
  - Add Acked-by,

v4:
  - Add Acked-by,

v3:
  - New.
---
 .../devicetree/bindings/display/amlogic,meson-dw-hdmi.txt       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt b/Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
index bf4a18047309a5f8..d8f6268849f43621 100644
--- a/Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
+++ b/Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
@@ -43,7 +43,7 @@ Required properties:
   and the Amlogic Meson venci clocks as described in
   Documentation/devicetree/bindings/clock/clock-bindings.txt,
   the clocks are soc specific, the clock-names should be "iahb", "isfr", "venci"
-- resets, resets-names: must have the phandles to the HDMI apb, glue and phy
+- resets, reset-names: must have the phandles to the HDMI apb, glue and phy
   resets as described in :
   Documentation/devicetree/bindings/reset/reset.txt,
   the reset-names should be "hdmitx_apb", "hdmitx", "hdmitx_phy"
-- 
2.17.1


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

* [PATCH v5 4/4] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/
  2018-07-06  8:32 [PATCH v5 0/4] DT: Fix spelling of standard properties Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2018-07-06  8:32 ` [PATCH v5 3/4] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/ Geert Uytterhoeven
@ 2018-07-06  8:32 ` Geert Uytterhoeven
  3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-07-06  8:32 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, David S . Miller, Chanho Min
  Cc: Neil Armstrong, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, netdev, linux-kernel, Geert Uytterhoeven

Fixes: fd913ef7ce619467 ("Bluetooth: btusb: Add out-of-band wakeup support")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Rob Herring <robh@kernel.org>
---
v4:
  - Add Acked-by,

v3:
  - New.
---
 Documentation/devicetree/bindings/net/btusb.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/net/btusb.txt b/Documentation/devicetree/bindings/net/btusb.txt
index 9c5e663fa1afccaf..828a04695e1be517 100644
--- a/Documentation/devicetree/bindings/net/btusb.txt
+++ b/Documentation/devicetree/bindings/net/btusb.txt
@@ -36,7 +36,7 @@ Following example uses irq pin number 3 of gpio0 for out of band wake-on-bt:
 	compatible = "usb1286,204e";
 	reg = <1>;
 	interrupt-parent = <&gpio0>;
-	interrupt-name = "wakeup";
+	interrupt-names = "wakeup";
 	interrupts = <3 IRQ_TYPE_LEVEL_LOW>;
     };
 };
-- 
2.17.1


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

end of thread, other threads:[~2018-07-06  8:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-06  8:32 [PATCH v5 0/4] DT: Fix spelling of standard properties Geert Uytterhoeven
2018-07-06  8:32 ` [PATCH v5 1/4] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
2018-07-06  8:32 ` [PATCH v5 2/4] arm64: dts: lg1313: " Geert Uytterhoeven
2018-07-06  8:32 ` [PATCH v5 3/4] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/ Geert Uytterhoeven
2018-07-06  8:32 ` [PATCH v5 4/4] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/ Geert Uytterhoeven

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).