Commit 45dcfaf1 authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Greg Kroah-Hartman

staging: xgifb: clean up xgifb_remove()

Delete redudant comments, blank lines and a redundant semicolon.
Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 5c0ef2ac
...@@ -3428,8 +3428,6 @@ static int __devinit xgifb_probe(struct pci_dev *pdev, ...@@ -3428,8 +3428,6 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
static void __devexit xgifb_remove(struct pci_dev *pdev) static void __devexit xgifb_remove(struct pci_dev *pdev)
{ {
/* Unregister the framebuffer */
/* if (xgi_video_info.registered) { */
unregister_framebuffer(fb_info); unregister_framebuffer(fb_info);
iounmap(xgi_video_info.mmio_vbase); iounmap(xgi_video_info.mmio_vbase);
iounmap(xgi_video_info.video_vbase); iounmap(xgi_video_info.video_vbase);
...@@ -3438,11 +3436,8 @@ static void __devexit xgifb_remove(struct pci_dev *pdev) ...@@ -3438,11 +3436,8 @@ static void __devexit xgifb_remove(struct pci_dev *pdev)
xgi_video_info.video_size); xgi_video_info.video_size);
vfree(XGIhw_ext.pjVirtualRomBase); vfree(XGIhw_ext.pjVirtualRomBase);
framebuffer_release(fb_info); framebuffer_release(fb_info);
/* } */
pci_set_drvdata(pdev, NULL); pci_set_drvdata(pdev, NULL);
}
};
static struct pci_driver xgifb_driver = { static struct pci_driver xgifb_driver = {
.name = "xgifb", .name = "xgifb",
......
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