diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2008-09-28 19:18:02 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-12-29 12:24:11 -0500 |
commit | 25729a7fb88ef2912fcb869abe3a76b3be07fc06 (patch) | |
tree | 146e6282ac25d0e00987891a73c02f1682e39b7c /drivers/scsi/ipr.c | |
parent | decf67e31e855963f4616912d9bc5b1c339d810a (diff) |
[SCSI] advansys, arcmsr, ipr, nsp32, qla1280, stex: use pci_ioremap_bar()
Use the newly introduced pci_ioremap_bar() function in drivers/scsi.
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>
Acked-by: Matthew Wilcox <willy@linux.intel.com>
Cc: Brian King <brking@us.ibm.com>
Cc: Ed Lin <ed.lin@promise.com>
Cc: Nick Cheng <nick.cheng@areca.com.tw>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/ipr.c')
-rw-r--r-- | drivers/scsi/ipr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/ipr.c b/drivers/scsi/ipr.c index ded854a6dd35..ec53c220cb37 100644 --- a/drivers/scsi/ipr.c +++ b/drivers/scsi/ipr.c | |||
@@ -7473,7 +7473,7 @@ static int __devinit ipr_probe_ioa(struct pci_dev *pdev, | |||
7473 | goto out_scsi_host_put; | 7473 | goto out_scsi_host_put; |
7474 | } | 7474 | } |
7475 | 7475 | ||
7476 | ipr_regs = ioremap(ipr_regs_pci, pci_resource_len(pdev, 0)); | 7476 | ipr_regs = pci_ioremap_bar(pdev, 0); |
7477 | 7477 | ||
7478 | if (!ipr_regs) { | 7478 | if (!ipr_regs) { |
7479 | dev_err(&pdev->dev, | 7479 | dev_err(&pdev->dev, |