aboutsummaryrefslogtreecommitdiff
path: root/sound/pci/ad1889.c
diff options
context:
space:
mode:
authorGravatar Arjan van de Ven <arjan@linux.intel.com> 2008-09-28 16:20:09 -0700
committerGravatar Takashi Iwai <tiwai@suse.de> 2008-10-21 09:31:10 +0200
commit2f5ad54ea6e2e38156bfb889964deee991f3087a (patch)
tree5092c0e36765c439181bb28712118dc8b899ca8b /sound/pci/ad1889.c
parentbinfmt_elf_fdpic: Update for cputime changes. (diff)
downloadlinux-2f5ad54ea6e2e38156bfb889964deee991f3087a.tar.gz
linux-2f5ad54ea6e2e38156bfb889964deee991f3087a.tar.bz2
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/ad1889.c')
-rw-r--r--sound/pci/ad1889.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ad1889.c b/sound/pci/ad1889.c
index 92f3a976ef2e..a7f38e63303f 100644
--- a/sound/pci/ad1889.c
+++ b/sound/pci/ad1889.c
@@ -932,7 +932,7 @@ snd_ad1889_create(struct snd_card *card,
goto free_and_ret;
chip->bar = pci_resource_start(pci, 0);
- chip->iobase = ioremap_nocache(chip->bar, pci_resource_len(pci, 0));
+ chip->iobase = pci_ioremap_bar(pci, 0);
if (chip->iobase == NULL) {
printk(KERN_ERR PFX "unable to reserve region.\n");
err = -EBUSY;