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

Commit d99501b8 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda/ca0132 - Call pci_iounmap() instead of iounmap()



We need to call pci_iounmap() instead of iounmap() for the regions
obtained via pci_iomap() call for some archs that need special
treatment.

Fixes: aa31704f ("ALSA: hda/ca0132: Add PCI region2 iomap for SBZ")
Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 563785ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8413,7 +8413,7 @@ static void ca0132_free(struct hda_codec *codec)

	snd_hda_power_down(codec);
	if (spec->mem_base)
		iounmap(spec->mem_base);
		pci_iounmap(codec->bus->pci, spec->mem_base);
	kfree(spec->spec_init_verbs);
	kfree(codec->spec);
}