Skip to content

Commit

Permalink
Staging: xgifb: disable pci device if there's an error after enabling…
Browse files Browse the repository at this point in the history
… it.

Signed-off-by: Miguel Gómez <magomez@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Miguel Gómez authored and Greg Kroah-Hartman committed Jun 12, 2012
1 parent d049053 commit 05e0603
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/staging/xgifb/XGI_main_26.c
Original file line number Diff line number Diff line change
Expand Up @@ -1904,7 +1904,7 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
if (reg1 != 0xa1) { /*I/O error */
pr_err("I/O error!!!");
ret = -EIO;
goto error;
goto error_disable;
}

switch (xgifb_info->chip_id) {
Expand All @@ -1927,7 +1927,7 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
break;
default:
ret = -ENODEV;
goto error;
goto error_disable;
}

pr_info("chipid = %x\n", xgifb_info->chip);
Expand All @@ -1936,7 +1936,7 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
if (XGIfb_get_dram_size(xgifb_info)) {
pr_err("Fatal error: Unable to determine RAM size.\n");
ret = -ENODEV;
goto error;
goto error_disable;
}

/* Enable PCI_LINEAR_ADDRESSING and MMIO_ENABLE */
Expand All @@ -1956,7 +1956,7 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
pr_err("Fatal error: Unable to reserve frame buffer memory\n");
pr_err("Is there another framebuffer driver active?\n");
ret = -ENODEV;
goto error;
goto error_disable;
}

if (!request_mem_region(xgifb_info->mmio_base,
Expand Down Expand Up @@ -2271,6 +2271,8 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
release_mem_region(xgifb_info->mmio_base, xgifb_info->mmio_size);
error_0:
release_mem_region(xgifb_info->video_base, xgifb_info->video_size);
error_disable:
pci_disable_device(pdev);
error:
framebuffer_release(fb_info);
return ret;
Expand Down

0 comments on commit 05e0603

Please sign in to comment.