devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/6] DT: Fix spelling of standard properties
@ 2017-06-02 12:38 Geert Uytterhoeven
  2017-06-02 12:38 ` [PATCH v3 1/6] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2017-06-02 12:38 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: Neil Armstrong, Benjamin Herrenschmidt, Paul Mackerras,
	Michael Ellerman, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	netdev-u79uwXL29TY76Z2rM5mHXA,
	linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ, 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 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,
  - Split off "[PATCH v2 4/6] ASoC: davinci-mcbsp: DT fix
    s/interrupts-names/interrupt-names/" from the unrelated "[PATCH 06/14]
    dmaengine: bcm2835: DT spelling s/interrupts-names/interrupt-names/",
  - Add new patch "[PATCH v2 3/6] arm64: dts: lg1313: DT fix
    s/#interrupts-cells/#interrupt-cells/".

Please apply where appropriate.

Thanks!

P.S. I used the following to detect misspellings:

    words="(address|clock|cooling|dma|gpio|index|interrupt|msi|nvmem|phy|phys|power-domain|pwm|reset|size|sleep|sound-dai|thermal-sensor)"

    git grep -Ew "${words}s-names"
    git grep -E "[^-]\<${words}-name\>[^-]"
    git grep -Ew "#${words}s-cells"             # false positive phys-cells
    git grep -E "#${words}-cell\>[^-]"

    git grep -w adress-cells
    git grep -Ew "interrupts-(map|parent)"

Geert Uytterhoeven (6):
  arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/
  arm64: dts: lg1313: DT fix s/#interrupts-cells/#interrupt-cells/
  dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/
  powerpc: dts: acadia: DT fix s/#interrupts-parent/#interrupt-parent/
  dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/
  dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/

 Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt | 2 +-
 Documentation/devicetree/bindings/net/btusb.txt                     | 2 +-
 Documentation/devicetree/booting-without-of.txt                     | 2 +-
 arch/arm64/boot/dts/lg/lg1312.dtsi                                  | 2 +-
 arch/arm64/boot/dts/lg/lg1313.dtsi                                  | 2 +-
 arch/powerpc/boot/dts/acadia.dts                                    | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

-- 
2.7.4

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.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
--
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] 12+ messages in thread

* [PATCH v3 1/6] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/
  2017-06-02 12:38 [PATCH v3 0/6] DT: Fix spelling of standard properties Geert Uytterhoeven
@ 2017-06-02 12:38 ` Geert Uytterhoeven
  2017-06-02 12:38 ` [PATCH v3 2/6] arm64: dts: lg1313: " Geert Uytterhoeven
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2017-06-02 12:38 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: Neil Armstrong, Benjamin Herrenschmidt, Paul Mackerras,
	Michael Ellerman, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, linux-kernel, netdev, linuxppc-dev,
	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 fbafa24cd5335b90..647606a83c517448 100644
--- a/arch/arm64/boot/dts/lg/lg1312.dtsi
+++ b/arch/arm64/boot/dts/lg/lg1312.dtsi
@@ -123,7 +123,7 @@
 	amba {
 		#address-cells = <2>;
 		#size-cells = <1>;
-		#interrupts-cells = <3>;
+		#interrupt-cells = <3>;
 
 		compatible = "simple-bus";
 		interrupt-parent = <&gic>;
-- 
2.7.4

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

* [PATCH v3 2/6] arm64: dts: lg1313: DT fix s/#interrupts-cells/#interrupt-cells/
  2017-06-02 12:38 [PATCH v3 0/6] DT: Fix spelling of standard properties Geert Uytterhoeven
  2017-06-02 12:38 ` [PATCH v3 1/6] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
@ 2017-06-02 12:38 ` Geert Uytterhoeven
  2017-06-02 12:38 ` [PATCH v3 3/6] dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/ Geert Uytterhoeven
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2017-06-02 12:38 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: Neil Armstrong, Benjamin Herrenschmidt, Paul Mackerras,
	Michael Ellerman, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, linux-kernel, netdev, linuxppc-dev,
	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 e703e1149c757082..abb2162228e82d39 100644
--- a/arch/arm64/boot/dts/lg/lg1313.dtsi
+++ b/arch/arm64/boot/dts/lg/lg1313.dtsi
@@ -123,7 +123,7 @@
 	amba {
 		#address-cells = <2>;
 		#size-cells = <1>;
-		#interrupts-cells = <3>;
+		#interrupt-cells = <3>;
 
 		compatible = "simple-bus";
 		interrupt-parent = <&gic>;
-- 
2.7.4

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

* [PATCH v3 3/6] dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/
  2017-06-02 12:38 [PATCH v3 0/6] DT: Fix spelling of standard properties Geert Uytterhoeven
  2017-06-02 12:38 ` [PATCH v3 1/6] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
  2017-06-02 12:38 ` [PATCH v3 2/6] arm64: dts: lg1313: " Geert Uytterhoeven
@ 2017-06-02 12:38 ` Geert Uytterhoeven
  2017-08-30  9:20   ` Michael Ellerman
  2018-01-22  3:34   ` [v3, " Michael Ellerman
  2017-06-02 12:38 ` [PATCH v3 4/6] powerpc: dts: acadia: DT fix s/#interrupts-parent/#interrupt-parent/ Geert Uytterhoeven
                   ` (2 subsequent siblings)
  5 siblings, 2 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2017-06-02 12:38 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: Neil Armstrong, Benjamin Herrenschmidt, Paul Mackerras,
	Michael Ellerman, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, linux-kernel, netdev, linuxppc-dev,
	Geert Uytterhoeven

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Rob Herring <robh@kernel.org>
---
v3:
  - No changes,

v2:
  - Add Acked-by.
---
 Documentation/devicetree/booting-without-of.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/booting-without-of.txt b/Documentation/devicetree/booting-without-of.txt
index 280d283304bb82d8..f35d3adacb987f7d 100644
--- a/Documentation/devicetree/booting-without-of.txt
+++ b/Documentation/devicetree/booting-without-of.txt
@@ -1309,7 +1309,7 @@ number and level/sense information. All interrupt children in an
 OpenPIC interrupt domain use 2 cells per interrupt in their interrupts
 property.
 
-The PCI bus binding specifies a #interrupt-cell value of 1 to encode
+The PCI bus binding specifies a #interrupt-cells value of 1 to encode
 which interrupt pin (INTA,INTB,INTC,INTD) is used.
 
 2) interrupt-parent property
-- 
2.7.4

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

* [PATCH v3 4/6] powerpc: dts: acadia: DT fix s/#interrupts-parent/#interrupt-parent/
  2017-06-02 12:38 [PATCH v3 0/6] DT: Fix spelling of standard properties Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2017-06-02 12:38 ` [PATCH v3 3/6] dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/ Geert Uytterhoeven
@ 2017-06-02 12:38 ` Geert Uytterhoeven
  2017-10-24  8:07   ` [v3, " Michael Ellerman
  2017-06-02 12:38 ` [PATCH v3 5/6] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/ Geert Uytterhoeven
  2017-06-02 12:38 ` [PATCH v3 6/6] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/ Geert Uytterhoeven
  5 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2017-06-02 12:38 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: Neil Armstrong, Benjamin Herrenschmidt, Paul Mackerras,
	Michael Ellerman, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, linux-kernel, netdev, linuxppc-dev,
	Geert Uytterhoeven

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Rob Herring <robh@kernel.org>
---
v3:
  - No changes,

v2:
  - Add Acked-by.
---
 arch/powerpc/boot/dts/acadia.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/boot/dts/acadia.dts b/arch/powerpc/boot/dts/acadia.dts
index 57291f61ffe7021a..86266159521edac2 100644
--- a/arch/powerpc/boot/dts/acadia.dts
+++ b/arch/powerpc/boot/dts/acadia.dts
@@ -183,7 +183,7 @@
 			usb@ef603000 {
 				compatible = "ohci-be";
 				reg = <0xef603000 0x80>;
-				interrupts-parent = <&UIC0>;
+				interrupt-parent = <&UIC0>;
 				interrupts = <0xd 0x4 0xe 0x4>;
 			};
 
-- 
2.7.4

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

* [PATCH v3 5/6] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/
  2017-06-02 12:38 [PATCH v3 0/6] DT: Fix spelling of standard properties Geert Uytterhoeven
                   ` (3 preceding siblings ...)
  2017-06-02 12:38 ` [PATCH v3 4/6] powerpc: dts: acadia: DT fix s/#interrupts-parent/#interrupt-parent/ Geert Uytterhoeven
@ 2017-06-02 12:38 ` Geert Uytterhoeven
  2017-06-07 22:42   ` Rob Herring
  2017-06-02 12:38 ` [PATCH v3 6/6] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/ Geert Uytterhoeven
  5 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2017-06-02 12:38 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: Neil Armstrong, Benjamin Herrenschmidt, Paul Mackerras,
	Michael Ellerman, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, linux-kernel, netdev, linuxppc-dev,
	Geert Uytterhoeven

Fixes: 8cceda5349377e30 ("dt-bindings: Add bindings for the Amlogic Meson dw-hdmi extension")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v3:
  - New.
---
 Documentation/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 7f040edc16fe6325..a65c890e3170f875 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.7.4

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

* [PATCH v3 6/6] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/
  2017-06-02 12:38 [PATCH v3 0/6] DT: Fix spelling of standard properties Geert Uytterhoeven
                   ` (4 preceding siblings ...)
  2017-06-02 12:38 ` [PATCH v3 5/6] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/ Geert Uytterhoeven
@ 2017-06-02 12:38 ` Geert Uytterhoeven
  2017-06-07 22:43   ` Rob Herring
  5 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2017-06-02 12:38 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: Neil Armstrong, Benjamin Herrenschmidt, Paul Mackerras,
	Michael Ellerman, dri-devel, linux-amlogic, devicetree,
	linux-arm-kernel, linux-kernel, netdev, linuxppc-dev,
	Geert Uytterhoeven

Fixes: fd913ef7ce619467 ("Bluetooth: btusb: Add out-of-band wakeup support")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
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 01fa2d4188d4a900..18dd9c386be094db 100644
--- a/Documentation/devicetree/bindings/net/btusb.txt
+++ b/Documentation/devicetree/bindings/net/btusb.txt
@@ -37,7 +37,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.7.4

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

* Re: [PATCH v3 5/6] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/
  2017-06-02 12:38 ` [PATCH v3 5/6] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/ Geert Uytterhoeven
@ 2017-06-07 22:42   ` Rob Herring
  0 siblings, 0 replies; 12+ messages in thread
From: Rob Herring @ 2017-06-07 22:42 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Mark Rutland, devicetree, Neil Armstrong, Catalin Marinas,
	Chanho Min, Will Deacon, linux-kernel, dri-devel, netdev,
	Paul Mackerras, Michael Ellerman, Kevin Hilman, Carlo Caione,
	linux-amlogic, linuxppc-dev, linux-arm-kernel

On Fri, Jun 02, 2017 at 02:38:48PM +0200, Geert Uytterhoeven wrote:
> Fixes: 8cceda5349377e30 ("dt-bindings: Add bindings for the Amlogic Meson dw-hdmi extension")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> v3:
>   - New.
> ---
>  Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Rob Herring <robh@kernel.org>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v3 6/6] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/
  2017-06-02 12:38 ` [PATCH v3 6/6] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/ Geert Uytterhoeven
@ 2017-06-07 22:43   ` Rob Herring
  0 siblings, 0 replies; 12+ messages in thread
From: Rob Herring @ 2017-06-07 22:43 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Mark Rutland, devicetree, Neil Armstrong, Catalin Marinas,
	Chanho Min, Will Deacon, linux-kernel, dri-devel, netdev,
	Paul Mackerras, Michael Ellerman, Kevin Hilman, Carlo Caione,
	linux-amlogic, linuxppc-dev, linux-arm-kernel

On Fri, Jun 02, 2017 at 02:38:49PM +0200, Geert Uytterhoeven wrote:
> Fixes: fd913ef7ce619467 ("Bluetooth: btusb: Add out-of-band wakeup support")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> v3:
>   - New.
> ---
>  Documentation/devicetree/bindings/net/btusb.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Rob Herring <robh@kernel.org>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v3 3/6] dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/
  2017-06-02 12:38 ` [PATCH v3 3/6] dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/ Geert Uytterhoeven
@ 2017-08-30  9:20   ` Michael Ellerman
  2018-01-22  3:34   ` [v3, " Michael Ellerman
  1 sibling, 0 replies; 12+ messages in thread
From: Michael Ellerman @ 2017-08-30  9:20 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: Neil Armstrong, Benjamin Herrenschmidt, Paul Mackerras,
	dri-devel, linux-amlogic, devicetree, linux-arm-kernel,
	linux-kernel, netdev, linuxppc-dev, Geert Uytterhoeven

Geert Uytterhoeven <geert+renesas@glider.be> writes:

> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Acked-by: Rob Herring <robh@kernel.org>
> ---

Rob this has your ack, but I'd expect it to go via your tree? Or should
I grab it?

cheers

> diff --git a/Documentation/devicetree/booting-without-of.txt b/Documentation/devicetree/booting-without-of.txt
> index 280d283304bb82d8..f35d3adacb987f7d 100644
> --- a/Documentation/devicetree/booting-without-of.txt
> +++ b/Documentation/devicetree/booting-without-of.txt
> @@ -1309,7 +1309,7 @@ number and level/sense information. All interrupt children in an
>  OpenPIC interrupt domain use 2 cells per interrupt in their interrupts
>  property.
>  
> -The PCI bus binding specifies a #interrupt-cell value of 1 to encode
> +The PCI bus binding specifies a #interrupt-cells value of 1 to encode
>  which interrupt pin (INTA,INTB,INTC,INTD) is used.
>  
>  2) interrupt-parent property
> -- 
> 2.7.4

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

* Re: [v3, 4/6] powerpc: dts: acadia: DT fix s/#interrupts-parent/#interrupt-parent/
  2017-06-02 12:38 ` [PATCH v3 4/6] powerpc: dts: acadia: DT fix s/#interrupts-parent/#interrupt-parent/ Geert Uytterhoeven
@ 2017-10-24  8:07   ` Michael Ellerman
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Ellerman @ 2017-10-24  8:07 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: devicetree, Geert Uytterhoeven, Neil Armstrong, linux-kernel,
	dri-devel, netdev, Paul Mackerras, linux-amlogic, linuxppc-dev,
	linux-arm-kernel

On Fri, 2017-06-02 at 12:38:47 UTC, Geert Uytterhoeven wrote:
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Acked-by: Rob Herring <robh@kernel.org>

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/3d2d4339cc326c427638daa67e264d

cheers

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

* Re: [v3, 3/6] dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/
  2017-06-02 12:38 ` [PATCH v3 3/6] dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/ Geert Uytterhoeven
  2017-08-30  9:20   ` Michael Ellerman
@ 2018-01-22  3:34   ` Michael Ellerman
  1 sibling, 0 replies; 12+ messages in thread
From: Michael Ellerman @ 2018-01-22  3:34 UTC (permalink / raw)
  To: David Airlie, Rob Herring, Mark Rutland, Carlo Caione,
	Kevin Hilman, Chanho Min, Catalin Marinas, Will Deacon
  Cc: devicetree, Geert Uytterhoeven, Neil Armstrong, netdev,
	linux-kernel, dri-devel, Paul Mackerras, linux-amlogic,
	linuxppc-dev, linux-arm-kernel

On Fri, 2017-06-02 at 12:38:46 UTC, Geert Uytterhoeven wrote:
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Acked-by: Rob Herring <robh@kernel.org>

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/4be4119d1fbd93c44d5c639735c312

cheers

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

end of thread, other threads:[~2018-01-22  3:34 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-02 12:38 [PATCH v3 0/6] DT: Fix spelling of standard properties Geert Uytterhoeven
2017-06-02 12:38 ` [PATCH v3 1/6] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
2017-06-02 12:38 ` [PATCH v3 2/6] arm64: dts: lg1313: " Geert Uytterhoeven
2017-06-02 12:38 ` [PATCH v3 3/6] dt: booting-without-of: DT fix s/#interrupt-cell/#interrupt-cells/ Geert Uytterhoeven
2017-08-30  9:20   ` Michael Ellerman
2018-01-22  3:34   ` [v3, " Michael Ellerman
2017-06-02 12:38 ` [PATCH v3 4/6] powerpc: dts: acadia: DT fix s/#interrupts-parent/#interrupt-parent/ Geert Uytterhoeven
2017-10-24  8:07   ` [v3, " Michael Ellerman
2017-06-02 12:38 ` [PATCH v3 5/6] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/ Geert Uytterhoeven
2017-06-07 22:42   ` Rob Herring
2017-06-02 12:38 ` [PATCH v3 6/6] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/ Geert Uytterhoeven
2017-06-07 22:43   ` 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).