]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
phy: ti: Init node before reading
authorMichal Simek <michal.simek@xilinx.com>
Sat, 16 Mar 2019 11:02:57 +0000 (12:02 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Sat, 16 Mar 2019 12:42:50 +0000 (13:42 +0100)
There is a need to fill node before clk_output_sel is setup.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Acked-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
drivers/net/phy/ti.c

index 16702bc4d05990a4b0a106100f27e997cf0eba95..97b729e11cdc7113c92706ac310918195cbf68ec 100644 (file)
@@ -220,6 +220,10 @@ static int dp83867_of_init(struct phy_device *phydev)
 
        /* Optional configuration */
 
+       node = phy_get_ofnode(phydev);
+       if (!ofnode_valid(node))
+               return -EINVAL;
+
        /*
         * Keep the default value if ti,clk-output-sel is not set
         * or to high
@@ -229,10 +233,6 @@ static int dp83867_of_init(struct phy_device *phydev)
                ofnode_read_u32_default(node, "ti,clk-output-sel",
                                        DP83867_CLK_O_SEL_REF_CLK);
 
-       node = phy_get_ofnode(phydev);
-       if (!ofnode_valid(node))
-               return -EINVAL;
-
        if (ofnode_read_bool(node, "ti,max-output-impedance"))
                dp83867->io_impedance = DP83867_IO_MUX_CFG_IO_IMPEDANCE_MAX;
        else if (ofnode_read_bool(node, "ti,min-output-impedance"))