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

Commit df970d39 authored by Markus Elfring's avatar Markus Elfring Committed by Kalle Valo
Browse files

cw1200: Delete an unnecessary check before the function call "release_firmware"



The release_firmware() 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 avatarKalle Valo <kvalo@codeaurora.org>
parent c1f1f666
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -246,7 +246,6 @@ static int cw1200_load_firmware_cw1200(struct cw1200_common *priv)

error:
	kfree(buf);
	if (firmware)
	release_firmware(firmware);
	return ret;