diff options
author | Amol Lad <amol@verismonetworks.com> | 2006-10-06 16:45:19 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-10-06 20:23:05 +0200 |
commit | 8a238c7b6a2ec1852419e8fb8b8b0457c55c47e6 (patch) | |
tree | 13d69d08d608963c592c3a1f90ae998acfb68db3 /sound | |
parent | a9edfc60227a1dc5c741666ff252a6055b73b184 (diff) | |
download | linux-3.10-8a238c7b6a2ec1852419e8fb8b8b0457c55c47e6.tar.gz linux-3.10-8a238c7b6a2ec1852419e8fb8b8b0457c55c47e6.tar.bz2 linux-3.10-8a238c7b6a2ec1852419e8fb8b8b0457c55c47e6.zip |
[ALSA] sound/pci/au88x0/au88x0.c: ioremap balanced with iounmap
Signed-off-by: Amol Lad <amol@verismonetworks.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/au88x0/au88x0.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/au88x0/au88x0.c b/sound/pci/au88x0/au88x0.c index ef189d7f09d..6ed5ad59f5b 100644 --- a/sound/pci/au88x0/au88x0.c +++ b/sound/pci/au88x0/au88x0.c @@ -128,6 +128,7 @@ static int snd_vortex_dev_free(struct snd_device *device) // Take down PCI interface. synchronize_irq(vortex->irq); free_irq(vortex->irq, vortex); + iounmap(vortex->mmio); pci_release_regions(vortex->pci_dev); pci_disable_device(vortex->pci_dev); kfree(vortex); |