ALSA: hda: Deletion of unnecessary checks before two function calls
The functions kfree() and release_firmware() test whether their argument is NULL and then return immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
b8eca77e54
commit
f0acd28c87
|
@ -834,7 +834,6 @@ static void snd_hda_bus_free(struct hda_bus *bus)
|
||||||
WARN_ON(!list_empty(&bus->codec_list));
|
WARN_ON(!list_empty(&bus->codec_list));
|
||||||
if (bus->workq)
|
if (bus->workq)
|
||||||
flush_workqueue(bus->workq);
|
flush_workqueue(bus->workq);
|
||||||
if (bus->unsol)
|
|
||||||
kfree(bus->unsol);
|
kfree(bus->unsol);
|
||||||
if (bus->ops.private_free)
|
if (bus->ops.private_free)
|
||||||
bus->ops.private_free(bus);
|
bus->ops.private_free(bus);
|
||||||
|
|
|
@ -1130,7 +1130,6 @@ static int azx_free(struct azx *chip)
|
||||||
pci_disable_device(chip->pci);
|
pci_disable_device(chip->pci);
|
||||||
kfree(chip->azx_dev);
|
kfree(chip->azx_dev);
|
||||||
#ifdef CONFIG_SND_HDA_PATCH_LOADER
|
#ifdef CONFIG_SND_HDA_PATCH_LOADER
|
||||||
if (chip->fw)
|
|
||||||
release_firmware(chip->fw);
|
release_firmware(chip->fw);
|
||||||
#endif
|
#endif
|
||||||
if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) {
|
if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) {
|
||||||
|
|
Loading…
Reference in New Issue