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

Commit 7d57cd89 authored by Markus Elfring's avatar Markus Elfring Committed by Mark Brown
Browse files

spi/txx9: Deletion of an unnecessary check before the function call "clk_disable"



The clk_disable() function tests whether its argument is NULL and then
returns immediately. Thus the test around the call is not needed.

This issue was detected by using the Coccinelle software.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent f114040e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -402,7 +402,6 @@ static int txx9spi_probe(struct platform_device *dev)
exit:
	if (c->workqueue)
		destroy_workqueue(c->workqueue);
	if (c->clk)
	clk_disable(c->clk);
	spi_master_put(master);
	return ret;