Revert "phy dp83867: Make rgmii parameters optional"
authorDavid S. Miller <davem@davemloft.net>
Tue, 17 May 2016 18:49:24 +0000 (14:49 -0400)
committerDavid S. Miller <davem@davemloft.net>
Tue, 17 May 2016 18:49:24 +0000 (14:49 -0400)
This reverts commit 81003bc924bac0a99bfdc2869f5dff5a87aa4a3d.

Developers have asked me to revert this for now.

Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/dp83867.c

index 1b01680987c494fecc82540f179e9cb3466f4c7c..94cc278b313667633932fce010a0449f27f825a2 100644 (file)
@@ -65,7 +65,6 @@ struct dp83867_private {
        int rx_id_delay;
        int tx_id_delay;
        int fifo_depth;
-       int values_are_sane;
 };
 
 static int dp83867_ack_interrupt(struct phy_device *phydev)
@@ -114,30 +113,15 @@ static int dp83867_of_init(struct phy_device *phydev)
        ret = of_property_read_u32(of_node, "ti,rx-internal-delay",
                                   &dp83867->rx_id_delay);
        if (ret)
-               goto invalid_dt;
+               return ret;
 
        ret = of_property_read_u32(of_node, "ti,tx-internal-delay",
                                   &dp83867->tx_id_delay);
        if (ret)
-               goto invalid_dt;
+               return ret;
 
-       ret = of_property_read_u32(of_node, "ti,fifo-depth",
+       return of_property_read_u32(of_node, "ti,fifo-depth",
                                   &dp83867->fifo_depth);
-       if (ret)
-               goto invalid_dt;
-
-       dp83867->values_are_sane = 1;
-
-       return 0;
-
-invalid_dt:
-       phydev_err(phydev, "missing properties in device tree");
-
-       /*
-        * We can still run with a broken dt by not using any of the optional
-        * parameters, so just don't set dp83867->values_are_sane.
-        */
-       return 0;
 }
 #else
 static int dp83867_of_init(struct phy_device *phydev)
@@ -166,15 +150,6 @@ static int dp83867_config_init(struct phy_device *phydev)
                dp83867 = (struct dp83867_private *)phydev->priv;
        }
 
-       /*
-        * With no or broken device tree, we don't have the values that we would
-        * want to configure the phy with. In that case, cross our fingers and
-        * assume that firmware did everything correctly for us or that we don't
-        * need them.
-        */
-       if (!dp83867->values_are_sane)
-               return 0;
-
        if (phy_interface_is_rgmii(phydev)) {
                ret = phy_write(phydev, MII_DP83867_PHYCTRL,
                        (dp83867->fifo_depth << DP83867_PHYCR_FIFO_DEPTH_SHIFT));