diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2008-09-28 16:20:09 -0700 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-10-21 09:31:10 +0200 |
commit | 2f5ad54ea6e2e38156bfb889964deee991f3087a (patch) | |
tree | 5092c0e36765c439181bb28712118dc8b899ca8b /sound/pci/cs5530.c | |
parent | 2515ddc6db8eb49a79f0fe5e67ff09ac7c81eab4 (diff) | |
download | kernel_samsung_smdk4412-2f5ad54ea6e2e38156bfb889964deee991f3087a.tar.gz kernel_samsung_smdk4412-2f5ad54ea6e2e38156bfb889964deee991f3087a.tar.bz2 kernel_samsung_smdk4412-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/cs5530.c')
-rw-r--r-- | sound/pci/cs5530.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/cs5530.c b/sound/pci/cs5530.c index 7ff8b68e997..4d9378d8120 100644 --- a/sound/pci/cs5530.c +++ b/sound/pci/cs5530.c @@ -132,7 +132,7 @@ static int __devinit snd_cs5530_create(struct snd_card *card, } chip->pci_base = pci_resource_start(pci, 0); - mem = ioremap_nocache(chip->pci_base, pci_resource_len(pci, 0)); + mem = pci_ioremap_bar(pci, 0); if (mem == NULL) { kfree(chip); pci_disable_device(pci); |