Commit e9ea828f authored by Christophe Jaillet's avatar Christophe Jaillet Committed by David S. Miller

net: fs_enet: Simplify code

There is no need to use an intermediate variable to handle an error code
in this case.
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1f8f1e89
......@@ -964,11 +964,10 @@ static int fs_enet_probe(struct platform_device *ofdev)
*/
clk = devm_clk_get(&ofdev->dev, "per");
if (!IS_ERR(clk)) {
err = clk_prepare_enable(clk);
if (err) {
ret = err;
ret = clk_prepare_enable(clk);
if (ret)
goto out_deregister_fixed_link;
}
fpi->clk_per = clk;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment