staging: xgifb: properly delete MTRR region
MTRR region should be deleted on probe failure and driver removal. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
831e5bad5f
commit
3028474cb4
1 changed files with 12 additions and 1 deletions
|
@ -2424,13 +2424,19 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
|
|||
|
||||
if (register_framebuffer(fb_info) < 0) {
|
||||
ret = -EINVAL;
|
||||
goto error_1;
|
||||
goto error_mtrr;
|
||||
}
|
||||
|
||||
dumpVGAReg();
|
||||
|
||||
return 0;
|
||||
|
||||
error_mtrr:
|
||||
#ifdef CONFIG_MTRR
|
||||
if (xgi_video_info.mtrr >= 0)
|
||||
mtrr_del(xgi_video_info.mtrr, xgi_video_info.video_base,
|
||||
xgi_video_info.video_size);
|
||||
#endif /* CONFIG_MTRR */
|
||||
error_1:
|
||||
iounmap(xgi_video_info.mmio_vbase);
|
||||
iounmap(xgi_video_info.video_vbase);
|
||||
|
@ -2451,6 +2457,11 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
|
|||
static void __devexit xgifb_remove(struct pci_dev *pdev)
|
||||
{
|
||||
unregister_framebuffer(fb_info);
|
||||
#ifdef CONFIG_MTRR
|
||||
if (xgi_video_info.mtrr >= 0)
|
||||
mtrr_del(xgi_video_info.mtrr, xgi_video_info.video_base,
|
||||
xgi_video_info.video_size);
|
||||
#endif /* CONFIG_MTRR */
|
||||
iounmap(xgi_video_info.mmio_vbase);
|
||||
iounmap(xgi_video_info.video_vbase);
|
||||
release_mem_region(xgi_video_info.mmio_base, xgi_video_info.mmio_size);
|
||||
|
|
Loading…
Reference in a new issue