On 8/11/2021 10:57 PM, Andrew Lunn wrote:
+ ret = clk_prepare_enable(priv->mdio_clk); + if (ret) + return ret; + + return 0;This can be simplified to just: return clk_prepare_enable(priv->mdio_clk); Andrew
Thanks Andrew for the comments, will update it in the next patch set.