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

ARM: dts: exynos: fix compatible strings for Ethernet USB devices

Fix compatible string for Ethernet USB device as required by USB device schema:
Documentation/devicetree/bindings/usb/usb-device.yaml
The textual representation of VID and PID shall be in lower case hexadecimal
with leading zeroes suppressed.

Since there are no kernel driver matching against this compatibles, I
expect no regressions with this patch. At the same time, without this fix, we
are not be able to validate this device nodes with newly provided DT
schema.

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Link: https://lore.kernel.org/r/20220216074927.3619425-7-o.rempel@pengutronix.de
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

authored by

Oleksij Rempel and committed by
Krzysztof Kozlowski
2e33a7b5 c1ed0f41

+9 -9
+1 -1
arch/arm/boot/dts/exynos4412-odroidu3.dts
··· 120 120 phy-names = "hsic0", "hsic1"; 121 121 122 122 ethernet: ethernet@2 { 123 - compatible = "usb0424,9730"; 123 + compatible = "usb424,9730"; 124 124 reg = <2>; 125 125 local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */ 126 126 };
+3 -3
arch/arm/boot/dts/exynos4412-odroidx.dts
··· 70 70 phy-names = "hsic0"; 71 71 72 72 hub@2 { 73 - compatible = "usb0424,3503"; 73 + compatible = "usb424,3503"; 74 74 reg = <2>; 75 75 #address-cells = <1>; 76 76 #size-cells = <0>; 77 77 78 78 hub@1 { 79 - compatible = "usb0424,9514"; 79 + compatible = "usb424,9514"; 80 80 reg = <1>; 81 81 #address-cells = <1>; 82 82 #size-cells = <0>; 83 83 84 84 ethernet: ethernet@1 { 85 - compatible = "usb0424,ec00"; 85 + compatible = "usb424,ec00"; 86 86 reg = <1>; 87 87 /* Filled in by a bootloader */ 88 88 local-mac-address = [00 00 00 00 00 00];
+1 -1
arch/arm/boot/dts/exynos5410-odroidxu.dts
··· 656 656 #size-cells = <0>; 657 657 658 658 ethernet: ethernet@2 { 659 - compatible = "usb0424,9730"; 659 + compatible = "usb424,9730"; 660 660 reg = <2>; 661 661 local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */ 662 662 };
+2 -2
arch/arm/boot/dts/exynos5422-odroidxu3-lite.dts
··· 113 113 #size-cells = <0>; 114 114 115 115 hub@1 { 116 - compatible = "usb0424,9514"; 116 + compatible = "usb424,9514"; 117 117 reg = <1>; 118 118 #address-cells = <1>; 119 119 #size-cells = <0>; 120 120 121 121 ethernet: ethernet@1 { 122 - compatible = "usb0424,ec00"; 122 + compatible = "usb424,ec00"; 123 123 reg = <1>; 124 124 local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */ 125 125 };
+2 -2
arch/arm/boot/dts/exynos5422-odroidxu3.dts
··· 80 80 #size-cells = <0>; 81 81 82 82 hub@1 { 83 - compatible = "usb0424,9514"; 83 + compatible = "usb424,9514"; 84 84 reg = <1>; 85 85 #address-cells = <1>; 86 86 #size-cells = <0>; 87 87 88 88 ethernet: ethernet@1 { 89 - compatible = "usb0424,ec00"; 89 + compatible = "usb424,ec00"; 90 90 reg = <1>; 91 91 local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */ 92 92 };