diff options
author | Arjan van de Ven <arjan@infradead.org> | 2008-10-21 00:42:39 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-10-31 00:53:48 -0400 |
commit | 275f165fa970174f8a98205529750e8abb6c0a33 (patch) | |
tree | a9548561c6fd50de8a0d706704ba6c6f22bc7b19 /drivers/net/wireless | |
parent | 842e08bd6891bd78b4c3d2e0c4a94bebb32ab3ad (diff) |
pci: use pci_ioremap_bar() in drivers/net
Use the newly introduced pci_ioremap_bar() function in drivers/net.
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: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/hostap/hostap_pci.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ipw2200.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00pci.c | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/wireless/hostap/hostap_pci.c b/drivers/net/wireless/hostap/hostap_pci.c index 3a874fc621d3..8fdd41f4b4f2 100644 --- a/drivers/net/wireless/hostap/hostap_pci.c +++ b/drivers/net/wireless/hostap/hostap_pci.c | |||
@@ -312,7 +312,7 @@ static int prism2_pci_probe(struct pci_dev *pdev, | |||
312 | goto err_out_disable; | 312 | goto err_out_disable; |
313 | } | 313 | } |
314 | 314 | ||
315 | mem = ioremap(phymem, pci_resource_len(pdev, 0)); | 315 | mem = pci_ioremap_bar(pdev, 0); |
316 | if (mem == NULL) { | 316 | if (mem == NULL) { |
317 | printk(KERN_ERR "prism2: Cannot remap PCI memory region\n") ; | 317 | printk(KERN_ERR "prism2: Cannot remap PCI memory region\n") ; |
318 | goto fail; | 318 | goto fail; |
diff --git a/drivers/net/wireless/ipw2200.c b/drivers/net/wireless/ipw2200.c index d0bfd8621119..13633d8274a3 100644 --- a/drivers/net/wireless/ipw2200.c +++ b/drivers/net/wireless/ipw2200.c | |||
@@ -11621,7 +11621,7 @@ static int __devinit ipw_pci_probe(struct pci_dev *pdev, | |||
11621 | length = pci_resource_len(pdev, 0); | 11621 | length = pci_resource_len(pdev, 0); |
11622 | priv->hw_len = length; | 11622 | priv->hw_len = length; |
11623 | 11623 | ||
11624 | base = ioremap_nocache(pci_resource_start(pdev, 0), length); | 11624 | base = pci_ioremap_bar(pdev, 0); |
11625 | if (!base) { | 11625 | if (!base) { |
11626 | err = -ENODEV; | 11626 | err = -ENODEV; |
11627 | goto out_pci_release_regions; | 11627 | goto out_pci_release_regions; |
diff --git a/drivers/net/wireless/rt2x00/rt2x00pci.c b/drivers/net/wireless/rt2x00/rt2x00pci.c index adf2876ed8ab..62449da577e5 100644 --- a/drivers/net/wireless/rt2x00/rt2x00pci.c +++ b/drivers/net/wireless/rt2x00/rt2x00pci.c | |||
@@ -222,8 +222,7 @@ static int rt2x00pci_alloc_reg(struct rt2x00_dev *rt2x00dev) | |||
222 | { | 222 | { |
223 | struct pci_dev *pci_dev = to_pci_dev(rt2x00dev->dev); | 223 | struct pci_dev *pci_dev = to_pci_dev(rt2x00dev->dev); |
224 | 224 | ||
225 | rt2x00dev->csr.base = ioremap(pci_resource_start(pci_dev, 0), | 225 | rt2x00dev->csr.base = pci_ioremap_bar(pci_dev, 0); |
226 | pci_resource_len(pci_dev, 0)); | ||
227 | if (!rt2x00dev->csr.base) | 226 | if (!rt2x00dev->csr.base) |
228 | goto exit; | 227 | goto exit; |
229 | 228 | ||