Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: usb: rts5411: Rename property 'companion-hub' to 'peer-hub'

In the context of USB the term 'companion-hub' is misleading, change the
name of the property to 'peer-hub'.

There are no upstream users of the 'companion-hub' property, neither in
the device tree, nor on the driver side, so renaming it shouldn't cause
any compatibility issues with existing device trees.

Changes in v24:
- patch added to the series

Reviewed-by: Douglas Anderson <dianders@chromium.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Link: https://lore.kernel.org/r/20220630123445.v24.2.Ie2bbbd3f690826404b8f1059d24edcab33ed898f@changeid
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Matthias Kaehlcke and committed by
Greg Kroah-Hartman
dee6719e 620e8e8b

+5 -5
+5 -5
Documentation/devicetree/bindings/usb/realtek,rts5411.yaml
··· 25 25 description: 26 26 phandle to the regulator that provides power to the hub. 27 27 28 - companion-hub: 28 + peer-hub: 29 29 $ref: '/schemas/types.yaml#/definitions/phandle' 30 30 description: 31 - phandle to the companion hub on the controller. 31 + phandle to the peer hub on the controller. 32 32 33 33 required: 34 - - companion-hub 34 + - peer-hub 35 35 - compatible 36 36 - reg 37 37 ··· 49 49 compatible = "usbbda,5411"; 50 50 reg = <1>; 51 51 vdd-supply = <&pp3300_hub>; 52 - companion-hub = <&hub_3_0>; 52 + peer-hub = <&hub_3_0>; 53 53 }; 54 54 55 55 /* 3.0 hub on port 2 */ ··· 57 57 compatible = "usbbda,411"; 58 58 reg = <2>; 59 59 vdd-supply = <&pp3300_hub>; 60 - companion-hub = <&hub_2_0>; 60 + peer-hub = <&hub_2_0>; 61 61 }; 62 62 };