Commit dae95c1f authored by Grant Likely's avatar Grant Likely
Browse files

dt/bindings: remove users of device_type "mdio"



device_type is a deprecated property, but some MDIO bus nodes still have
it. Except for a couple of old binding (compatible="gianfar" and
compatible="ucc_geth_phy") the kernel doesn't look for
device_type="mdio" at all.

This patch removes all instances of device_type="mdio" from the binding
documentation and the .dts files.

Signed-off-by: default avatarGrant Likely <grant.likely@linaro.org>
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Ian Campbell <ijc+devicetree@hellion.org.uk>
Cc: Kumar Gala <galak@codeaurora.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
parent aadfb32b
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -79,7 +79,6 @@ prefixed with the string "marvell,", for Marvell Technology Group Ltd.
   Required properties:
   Required properties:
     - #address-cells : Should be <1>
     - #address-cells : Should be <1>
     - #size-cells : Should be <0>
     - #size-cells : Should be <0>
     - device_type : Should be "mdio"
     - compatible : Should be "marvell,mv64360-mdio"
     - compatible : Should be "marvell,mv64360-mdio"


   Example:
   Example:
@@ -87,7 +86,6 @@ prefixed with the string "marvell,", for Marvell Technology Group Ltd.
     mdio {
     mdio {
	     #address-cells = <1>;
	     #address-cells = <1>;
	     #size-cells = <0>;
	     #size-cells = <0>;
	     device_type = "mdio";
	     compatible = "marvell,mv64360-mdio";
	     compatible = "marvell,mv64360-mdio";


	     ethernet-phy@0 {
	     ethernet-phy@0 {
+0 −1
Original line number Original line Diff line number Diff line
@@ -33,7 +33,6 @@ fsl,mdc-pin : pin of port C controlling mdio clock


Example:
Example:
	mdio@10d40 {
	mdio@10d40 {
		device_type = "mdio";
		compatible = "fsl,mpc8272ads-mdio-bitbang",
		compatible = "fsl,mpc8272ads-mdio-bitbang",
			     "fsl,mpc8272-mdio-bitbang",
			     "fsl,mpc8272-mdio-bitbang",
			     "fsl,cpm2-mdio-bitbang";
			     "fsl,cpm2-mdio-bitbang";
+0 −1
Original line number Original line Diff line number Diff line
@@ -67,7 +67,6 @@ bcsr@1,0 {
			ranges;
			ranges;


			mdio {
			mdio {
				device_type = "mdio";
				compatible = "fsl,ep8248e-mdio-bitbang";
				compatible = "fsl,ep8248e-mdio-bitbang";
				#address-cells = <1>;
				#address-cells = <1>;
				#size-cells = <0>;
				#size-cells = <0>;
+0 −1
Original line number Original line Diff line number Diff line
@@ -58,7 +58,6 @@ i2c@7000 {
		};
		};


		MDIO: mdio@6000 {
		MDIO: mdio@6000 {
			device_type = "mdio";
			compatible = "tsi109-mdio", "tsi108-mdio";
			compatible = "tsi109-mdio", "tsi108-mdio";
			reg = <0x00006000 0x00000050>;
			reg = <0x00006000 0x00000050>;
			#address-cells = <1>;
			#address-cells = <1>;
+0 −1
Original line number Original line Diff line number Diff line
@@ -68,7 +68,6 @@ i2c@7000 {
		};
		};


		MDIO: mdio@6000 {
		MDIO: mdio@6000 {
			device_type = "mdio";
			compatible = "tsi108-mdio";
			compatible = "tsi108-mdio";
			reg = <0x6000 0x50>;
			reg = <0x6000 0x50>;
			#address-cells = <1>;
			#address-cells = <1>;
Loading