Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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;
	}