Skip to content

Commit 00e6d60

Browse files
juhosggclement
authored andcommitted
arm64: dts: marvell: armada-37xx: swap PHYs' order in USB3 controller node
It seems that the Armada 3700 is the only platform where the USB3 specific PHY is defined before the USB2 specific one in the device tree: $ git grep -E 'phy-names[ \t]*=[ \t]*"usb3-phy"[ \t]*,' next-20260327 -- *.dts *.dtsi | tr '\t' ' ' next-20260327:arch/arm64/boot/dts/marvell/armada-37xx.dtsi: phy-names = "usb3-phy", "usb2-utmi-otg-phy"; In contrary to this, there are 93 other platforms/boards where 'usb2-phy' is defined first: $ git grep -E 'phy-names[ \t]*=[ \t]*"usb2-phy"[ \t]*,' next-20260327 -- *.dts *.dtsi | wc -l 93 Swap the order of the USB3 and USB2 PHYs to follow the common pattern used on other platforms. No functional changes intended. Signed-off-by: Gabor Juhos <[email protected]> Signed-off-by: Gregory CLEMENT <[email protected]>
1 parent 0fef198 commit 00e6d60

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/arm64/boot/dts/marvell/armada-37xx.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,8 @@
371371
reg = <0x58000 0x4000>;
372372
interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
373373
clocks = <&sb_periph_clk 12>;
374-
phys = <&comphy0 0>, <&usb2_utmi_otg_phy>;
375-
phy-names = "usb3-phy", "usb2-phy";
374+
phys = <&usb2_utmi_otg_phy>, <&comphy0 0>;
375+
phy-names = "usb2-phy", "usb3-phy";
376376
status = "disabled";
377377
};
378378

0 commit comments

Comments
 (0)