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

Commit 4e3461d3 authored by Markus Elfring's avatar Markus Elfring Committed by Mark Brown
Browse files

ASoC: Intel: 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 avatarMark Brown <broonie@kernel.org>
parent 544c55c8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -324,7 +324,6 @@ void sst_firmware_load_cb(const struct firmware *fw, void *context)

	if (ctx->sst_state != SST_RESET ||
			ctx->fw_in_mem != NULL) {
		if (fw != NULL)
		release_firmware(fw);
		mutex_unlock(&ctx->sst_lock);
		return;