aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_ca0132.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2018-11-12 12:26:57 +0100
committerTakashi Iwai <tiwai@suse.de>2018-11-12 12:30:21 +0100
commitd99501b8575dc1248bacf1b58d2241cb4b265d49 (patch)
treeaa4f2553572785c1896bc87dadf5e559db99d801 /sound/pci/hda/patch_ca0132.c
parentALSA: hda/realtek - Add quirk entry for HP Pavilion 15 (diff)
downloadlinux-dev-d99501b8575dc1248bacf1b58d2241cb4b265d49.tar.xz
linux-dev-d99501b8575dc1248bacf1b58d2241cb4b265d49.zip
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: aa31704fd81c ("ALSA: hda/ca0132: Add PCI region2 iomap for SBZ") Cc: <stable@vger.kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_ca0132.c')
-rw-r--r--sound/pci/hda/patch_ca0132.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c
index 0a24037184c3..bdbbc51e8d18 100644
--- a/sound/pci/hda/patch_ca0132.c
+++ b/sound/pci/hda/patch_ca0132.c
@@ -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);
}