Commit 2e33a7b5 authored by Oleksij Rempel's avatar Oleksij Rempel Committed by Krzysztof Kozlowski
Browse files

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: default avatarOleksij Rempel <o.rempel@pengutronix.de>
Link: https://lore.kernel.org/r/20220216074927.3619425-7-o.rempel@pengutronix.de


Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
parent c1ed0f41
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@
	phy-names = "hsic0", "hsic1";

	ethernet: ethernet@2 {
		compatible = "usb0424,9730";
		compatible = "usb424,9730";
		reg = <2>;
		local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */
	};
+3 −3
Original line number Diff line number Diff line
@@ -70,19 +70,19 @@
	phy-names = "hsic0";

	hub@2 {
		compatible = "usb0424,3503";
		compatible = "usb424,3503";
		reg = <2>;
		#address-cells = <1>;
		#size-cells = <0>;

		hub@1 {
			compatible = "usb0424,9514";
			compatible = "usb424,9514";
			reg = <1>;
			#address-cells = <1>;
			#size-cells = <0>;

			ethernet: ethernet@1 {
				compatible = "usb0424,ec00";
				compatible = "usb424,ec00";
				reg = <1>;
				/* Filled in by a bootloader */
				local-mac-address = [00 00 00 00 00 00];
+1 −1
Original line number Diff line number Diff line
@@ -656,7 +656,7 @@
	#size-cells = <0>;

	ethernet: ethernet@2 {
		compatible = "usb0424,9730";
		compatible = "usb424,9730";
		reg = <2>;
		local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */
	};
+2 −2
Original line number Diff line number Diff line
@@ -113,13 +113,13 @@
	#size-cells = <0>;

	hub@1 {
		compatible = "usb0424,9514";
		compatible = "usb424,9514";
		reg = <1>;
		#address-cells = <1>;
		#size-cells = <0>;

		ethernet: ethernet@1 {
			compatible = "usb0424,ec00";
			compatible = "usb424,ec00";
			reg = <1>;
			local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */
		};
+2 −2
Original line number Diff line number Diff line
@@ -80,13 +80,13 @@
	#size-cells = <0>;

	hub@1 {
		compatible = "usb0424,9514";
		compatible = "usb424,9514";
		reg = <1>;
		#address-cells = <1>;
		#size-cells = <0>;

		ethernet: ethernet@1 {
			compatible = "usb0424,ec00";
			compatible = "usb424,ec00";
			reg = <1>;
			local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */
		};