aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/pci/au88x0
diff options
context:
space:
mode:
authorArjan van de Ven <arjan@linux.intel.com>2008-09-28 16:20:09 -0700
committerTakashi Iwai <tiwai@suse.de>2008-10-21 09:31:10 +0200
commit2f5ad54ea6e2e38156bfb889964deee991f3087a (patch)
tree5092c0e36765c439181bb28712118dc8b899ca8b /sound/pci/au88x0
parentbinfmt_elf_fdpic: Update for cputime changes. (diff)
downloadwireguard-linux-2f5ad54ea6e2e38156bfb889964deee991f3087a.tar.xz
wireguard-linux-2f5ad54ea6e2e38156bfb889964deee991f3087a.zip
pci: use pci_ioremap_bar() in sound/
Use the newly introduced pci_ioremap_bar() function in sound/. pci_ioremap_bar() just takes a pci device and a bar number, with the goal of making it really hard to get wrong, while also having a central place to stick sanity checks. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/au88x0')
-rw-r--r--sound/pci/au88x0/au88x0.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/au88x0/au88x0.c b/sound/pci/au88x0/au88x0.c
index 68368e490074..a36d4d1fd419 100644
--- a/sound/pci/au88x0/au88x0.c
+++ b/sound/pci/au88x0/au88x0.c
@@ -180,8 +180,7 @@ snd_vortex_create(struct snd_card *card, struct pci_dev *pci, vortex_t ** rchip)
if ((err = pci_request_regions(pci, CARD_NAME_SHORT)) != 0)
goto regions_out;
- chip->mmio = ioremap_nocache(pci_resource_start(pci, 0),
- pci_resource_len(pci, 0));
+ chip->mmio = pci_ioremap_bar(pci, 0);
if (!chip->mmio) {
printk(KERN_ERR "MMIO area remap failed.\n");
err = -ENOMEM;