mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 04:42:12 +00:00
5bdd5fbb35
The binding for the USB PHY went thru before the driver. However the new version of the driver now use the PHY core support for reset, and this expect the reset to be named "phy". So remove the "usb-" prefix from the the reset names. Signed-off-by: Alban Bedel <albeu@free.fr> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Paul Burton <paul.burton@mips.com> Patchwork: https://patchwork.linux-mips.org/patch/15282/ Cc: linux-kernel@vger.kernel.org Cc: Rob Herring <robh+dt@kernel.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Antony Pavlov <antonynpavlov@gmail.com> Cc: devicetree@vger.kernel.org Cc: linux-mips@linux-mips.org
19 lines
362 B
Plaintext
19 lines
362 B
Plaintext
* Atheros AR71XX/9XXX USB PHY
|
|
|
|
Required properties:
|
|
- compatible: "qca,ar7100-usb-phy"
|
|
- #phys-cells: should be 0
|
|
- reset-names: "phy"[, "suspend-override"]
|
|
- resets: references to the reset controllers
|
|
|
|
Example:
|
|
|
|
usb-phy {
|
|
compatible = "qca,ar7100-usb-phy";
|
|
|
|
reset-names = "phy", "suspend-override";
|
|
resets = <&rst 4>, <&rst 3>;
|
|
|
|
#phy-cells = <0>;
|
|
};
|