Re: [PATCH v2 1/3] net: mdio: Add the reset function for IPQ MDIO driver

From: Jie Luo
Date: Wed Aug 11 2021 - 22:40:18 EST



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.