From: Trent Piepho Date: Fri, 10 May 2019 17:49:08 +0000 (+0000) Subject: net: phy: ti: Fix clock output DT property X-Git-Tag: v2019.10-rc1~28^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2529dea8931849c2bf8ee32963ee846e8e06e390;p=platform%2Fkernel%2Fu-boot.git net: phy: ti: Fix clock output DT property The code block reading the DT property for the clock output control was before the phy's DT node pointer was set, so it could never work. Move it after the node pointer is set. Also store the unsigned 32-bit property into an unsigned value, not a signed value, as the former will cause a problem if value overflows. For instance, if one were to add 0xffffffff as a code to mean the clock output should be turned off. Cc: Joe Hershberger Cc: Janine Hagemann Cc: Grygorii Strashko Signed-off-by: Trent Piepho Reviewed-by: Grygorii Strashko Acked-by: Joe Hershberger --- diff --git a/drivers/net/phy/ti.c b/drivers/net/phy/ti.c index 7f3d44a..7509936 100644 --- a/drivers/net/phy/ti.c +++ b/drivers/net/phy/ti.c @@ -103,7 +103,7 @@ struct dp83867_private { int io_impedance; bool rxctrl_strap_quirk; int port_mirroring; - int clk_output_sel; + unsigned int clk_output_sel; }; static int dp83867_config_port_mirroring(struct phy_device *phydev) @@ -136,17 +136,11 @@ static int dp83867_of_init(struct phy_device *phydev) ofnode node; u16 val; - /* 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 - */ - + /* Keep the default value if ti,clk-output-sel is not set */ dp83867->clk_output_sel = ofnode_read_u32_default(node, "ti,clk-output-sel", DP83867_CLK_O_SEL_REF_CLK);