diff options
author | Tejun Heo <htejun@gmail.com> | 2007-03-16 01:59:42 +0900 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-03-19 11:56:59 -0400 |
commit | e1251d01452d2f8e91c898b3828444b279cef047 (patch) | |
tree | 74ead60fe1fe99136e40b4063fee29e727b15f96 /drivers/ata | |
parent | aeb9362a4844d7a4e43c7d4e4ef1461850346b0c (diff) |
sata_inic162x: kill double region requests
Regions are requested twice during initialization causing the second
one to fail. This is regression introduced during iomap conversion.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/sata_inic162x.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/ata/sata_inic162x.c b/drivers/ata/sata_inic162x.c index 3193a603d1a1..1e21688bfcf2 100644 --- a/drivers/ata/sata_inic162x.c +++ b/drivers/ata/sata_inic162x.c @@ -672,10 +672,6 @@ static int inic_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) if (rc) return rc; - rc = pci_request_regions(pdev, DRV_NAME); - if (rc) - return rc; - rc = pcim_iomap_regions(pdev, 0x3f, DRV_NAME); if (rc) return rc; |