Commit c4e4d47d authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

PCI: remove pcibios_find_device() from the 53c7,8xx.c SCSI driver

parent ecc518ac
...@@ -1533,8 +1533,7 @@ NCR53c7xx_detect(Scsi_Host_Template *tpnt){ ...@@ -1533,8 +1533,7 @@ NCR53c7xx_detect(Scsi_Host_Template *tpnt){
int i; int i;
int current_override; int current_override;
int count; /* Number of boards detected */ int count; /* Number of boards detected */
unsigned char pci_bus, pci_device_fn; struct pci_dev *pdev = NULL;
static short pci_index=0; /* Device index to PCI BIOS calls */
tpnt->proc_name = "ncr53c7xx"; tpnt->proc_name = "ncr53c7xx";
...@@ -1563,13 +1562,11 @@ NCR53c7xx_detect(Scsi_Host_Template *tpnt){ ...@@ -1563,13 +1562,11 @@ NCR53c7xx_detect(Scsi_Host_Template *tpnt){
if (pci_present()) { if (pci_present()) {
for (i = 0; i < NPCI_CHIP_IDS; ++i) for (i = 0; i < NPCI_CHIP_IDS; ++i)
for (pci_index = 0; while ((pdev = pci_find_device (PCI_VENDOR_ID_NCR,
!pcibios_find_device (PCI_VENDOR_ID_NCR, pci_chip_ids[i].pci_device_id,
pci_chip_ids[i].pci_device_id, pci_index, &pci_bus, pdev)))
&pci_device_fn);
++pci_index)
if (!ncr_pci_init (tpnt, BOARD_GENERIC, pci_chip_ids[i].chip, if (!ncr_pci_init (tpnt, BOARD_GENERIC, pci_chip_ids[i].chip,
pci_bus, pci_device_fn, /* no options */ 0)) pdev->bus->number, pdev->devfn, /* no options */ 0))
++count; ++count;
} }
return count; return count;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment