mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 22:02:28 +00:00
fbdev: cyber2000fb: fix missing pci_disable_device()
Add missing pci_disable_device() in error path of probe() and remove() path.
Fixes: 1da177e4c3
("Linux-2.6.12-rc2")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
835bed1b83
commit
3c6bf6bddc
@ -1796,6 +1796,7 @@ failed_ioremap:
|
||||
failed_regions:
|
||||
cyberpro_free_fb_info(cfb);
|
||||
failed_release:
|
||||
pci_disable_device(dev);
|
||||
return err;
|
||||
}
|
||||
|
||||
@ -1812,6 +1813,7 @@ static void cyberpro_pci_remove(struct pci_dev *dev)
|
||||
int_cfb_info = NULL;
|
||||
|
||||
pci_release_regions(dev);
|
||||
pci_disable_device(dev);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user