Commit ffb3d134 authored by Jeff Garzik's avatar Jeff Garzik Committed by Linus Torvalds

[PATCH] scx200_acb: handle PCI errors

Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a6cd2d94
...@@ -494,11 +494,12 @@ static __init int scx200_create_pci(const char *text, struct pci_dev *pdev, ...@@ -494,11 +494,12 @@ static __init int scx200_create_pci(const char *text, struct pci_dev *pdev,
iface->pdev = pdev; iface->pdev = pdev;
iface->bar = bar; iface->bar = bar;
pci_enable_device_bars(iface->pdev, 1 << iface->bar); rc = pci_enable_device_bars(iface->pdev, 1 << iface->bar);
if (rc)
goto errout_free;
rc = pci_request_region(iface->pdev, iface->bar, iface->adapter.name); rc = pci_request_region(iface->pdev, iface->bar, iface->adapter.name);
if (rc) {
if (rc != 0) {
printk(KERN_ERR NAME ": can't allocate PCI BAR %d\n", printk(KERN_ERR NAME ": can't allocate PCI BAR %d\n",
iface->bar); iface->bar);
goto errout_free; goto errout_free;
......
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