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

Commit 58043f25 authored by Markus Elfring's avatar Markus Elfring Committed by Greg Kroah-Hartman
Browse files

staging: ks7010: Delete unnecessary checks before the function call "kfree"



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

This issue was detected by using the Coccinelle software.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Acked-by: default avatarWolfram Sang <wsa@the-dreams.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 68d81dea
Loading
Loading
Loading
Loading
+4 −9
Original line number Diff line number Diff line
@@ -732,7 +732,6 @@ static int ks7010_sdio_update_index(struct ks_wlan_private *priv, u32 index)
		goto error_out;
	}
 error_out:
	if (data_buf)
	kfree(data_buf);
	return rc;
}
@@ -763,7 +762,6 @@ static int ks7010_sdio_data_compare(struct ks_wlan_private *priv, u32 address,
		goto error_out;
	}
 error_out:
	if (read_buf)
	kfree(read_buf);
	return rc;
}
@@ -879,7 +877,6 @@ static int ks7010_upload_firmware(struct ks_wlan_private *priv,
	release_firmware(fw_entry);
 error_out0:
	sdio_release_host(card->func);
	if (rom_buf)
	kfree(rom_buf);
	return rc;
}
@@ -1199,9 +1196,7 @@ static void ks7010_sdio_remove(struct sdio_func *func)
		unregister_netdev(netdev);

		trx_device_exit(priv);
		if (priv->ks_wlan_hw.read_buf) {
		kfree(priv->ks_wlan_hw.read_buf);
		}
		free_netdev(priv->net_dev);
		card->priv = NULL;
	}