2020-05-05 13:38:02

by Geert Uytterhoeven

[permalink] [raw]
Subject: [PATCH v4 resend 2] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/

The standard DT property name is "interrupt-names".

Fixes: fd913ef7ce619467 ("Bluetooth: btusb: Add out-of-band wakeup support")
Signed-off-by: Geert Uytterhoeven <[email protected]>
Acked-by: Rob Herring <[email protected]>
---
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 b1ad6ee68e909318..c51dd99dc0d3cb73 100644
--- a/Documentation/devicetree/bindings/net/btusb.txt
+++ b/Documentation/devicetree/bindings/net/btusb.txt
@@ -38,7 +38,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


2020-05-05 17:40:24

by Brian Norris

[permalink] [raw]
Subject: Re: [PATCH v4 resend 2] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/

On Tue, May 5, 2020 at 6:36 AM Geert Uytterhoeven
<[email protected]> wrote:
>
> The standard DT property name is "interrupt-names".
>
> Fixes: fd913ef7ce619467 ("Bluetooth: btusb: Add out-of-band wakeup support")
> Signed-off-by: Geert Uytterhoeven <[email protected]>
> Acked-by: Rob Herring <[email protected]>

If it matters:

Reviewed-by: Brian Norris <[email protected]>

We're definitely using the plural ("interrupt-names") not the
singular, so this was just a typo.

Brian

2020-05-06 18:52:46

by Rajat Jain

[permalink] [raw]
Subject: Re: [PATCH v4 resend 2] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/

On Tue, May 5, 2020 at 10:38 AM Brian Norris <[email protected]> wrote:
>
> On Tue, May 5, 2020 at 6:36 AM Geert Uytterhoeven
> <[email protected]> wrote:
> >
> > The standard DT property name is "interrupt-names".
> >
> > Fixes: fd913ef7ce619467 ("Bluetooth: btusb: Add out-of-band wakeup support")
> > Signed-off-by: Geert Uytterhoeven <[email protected]>
> > Acked-by: Rob Herring <[email protected]>
>
> If it matters:
>
> Reviewed-by: Brian Norris <[email protected]>
Acked-by: Rajat Jain <[email protected]>
>
> We're definitely using the plural ("interrupt-names") not the
> singular, so this was just a typo.
>
> Brian