Commit df10f4ed authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] i2o: Switch to pci_get API

Use the safe ref-counted API for the bridge check
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Cc: Markus Lidel <Markus.Lidel@shadowconnect.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 1aff0eca
...@@ -372,12 +372,13 @@ static int __devinit i2o_pci_probe(struct pci_dev *pdev, ...@@ -372,12 +372,13 @@ static int __devinit i2o_pci_probe(struct pci_dev *pdev,
* Expose the ship behind i960 for initialization, or it will * Expose the ship behind i960 for initialization, or it will
* failed * failed
*/ */
i960 = i960 = pci_get_slot(c->pdev->bus,
pci_find_slot(c->pdev->bus->number,
PCI_DEVFN(PCI_SLOT(c->pdev->devfn), 0)); PCI_DEVFN(PCI_SLOT(c->pdev->devfn), 0));
if (i960) if (i960) {
pci_write_config_word(i960, 0x42, 0); pci_write_config_word(i960, 0x42, 0);
pci_dev_put(i960);
}
c->promise = 1; c->promise = 1;
c->limit_sectors = 1; c->limit_sectors = 1;
......
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