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

Commit 3f41a3c4 authored by Markus Elfring's avatar Markus Elfring Committed by Roger Quadros
Browse files

memory: omap-gpmc: Delete an unnecessary check before the function call "gpiochip_free_own_desc"



The gpiochip_free_own_desc() 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 avatarRoger Quadros <rogerq@ti.com>
parent fa8410b3
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -2143,9 +2143,7 @@ static int gpmc_probe_generic_child(struct platform_device *pdev,
	ret = -ENODEV;

err_cs:
	if (waitpin_desc)
	gpiochip_free_own_desc(waitpin_desc);

err:
	gpmc_cs_free(cs);