[PATCH] i2o: Do not disable pci device when it's in use
When dpt_i2o is loaded first, i2o being loaded would cause it to call pci_device_disable, thus breaking dpt_i2o's use of the device. Based on similar usage of pci_disable_device in other drivers. Signed-off-by: Ben Collins <bcollins@ubuntu.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
48ea753075
commit
87d47d0547
1 changed files with 5 additions and 1 deletions
|
@ -303,6 +303,7 @@ static int __devinit i2o_pci_probe(struct pci_dev *pdev,
|
||||||
struct i2o_controller *c;
|
struct i2o_controller *c;
|
||||||
int rc;
|
int rc;
|
||||||
struct pci_dev *i960 = NULL;
|
struct pci_dev *i960 = NULL;
|
||||||
|
int pci_dev_busy = 0;
|
||||||
|
|
||||||
printk(KERN_INFO "i2o: Checking for PCI I2O controllers...\n");
|
printk(KERN_INFO "i2o: Checking for PCI I2O controllers...\n");
|
||||||
|
|
||||||
|
@ -395,6 +396,8 @@ static int __devinit i2o_pci_probe(struct pci_dev *pdev,
|
||||||
if ((rc = i2o_pci_alloc(c))) {
|
if ((rc = i2o_pci_alloc(c))) {
|
||||||
printk(KERN_ERR "%s: DMA / IO allocation for I2O controller "
|
printk(KERN_ERR "%s: DMA / IO allocation for I2O controller "
|
||||||
" failed\n", c->name);
|
" failed\n", c->name);
|
||||||
|
if (rc == -ENODEV)
|
||||||
|
pci_dev_busy = 1;
|
||||||
goto free_controller;
|
goto free_controller;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -425,7 +428,8 @@ static int __devinit i2o_pci_probe(struct pci_dev *pdev,
|
||||||
i2o_iop_free(c);
|
i2o_iop_free(c);
|
||||||
|
|
||||||
disable:
|
disable:
|
||||||
pci_disable_device(pdev);
|
if (!pci_dev_busy)
|
||||||
|
pci_disable_device(pdev);
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue