mirror of https://gitee.com/openkylin/linux.git
staging: xgifb: clean up xgifb_remove()
Delete redudant comments, blank lines and a redundant semicolon. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
5c0ef2ac36
commit
45dcfaf150
|
@ -3428,8 +3428,6 @@ static int __devinit xgifb_probe(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);
|
||||
iounmap(xgi_video_info.mmio_vbase);
|
||||
iounmap(xgi_video_info.video_vbase);
|
||||
|
@ -3438,11 +3436,8 @@ static void __devexit xgifb_remove(struct pci_dev *pdev)
|
|||
xgi_video_info.video_size);
|
||||
vfree(XGIhw_ext.pjVirtualRomBase);
|
||||
framebuffer_release(fb_info);
|
||||
/* } */
|
||||
|
||||
pci_set_drvdata(pdev, NULL);
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
static struct pci_driver xgifb_driver = {
|
||||
.name = "xgifb",
|
||||
|
|
Loading…
Reference in New Issue