Skip to content

Commit

Permalink
fbdev: uvesafb: Fixes an error handling path in uvesafb_probe()
Browse files Browse the repository at this point in the history
If an error occurs after a successful uvesafb_init_mtrr() call, it must be
undone by a corresponding arch_phys_wc_del() call, as already done in the
remove function.

This has been added in the remove function in commit 63e28a7
("uvesafb: Clean up MTRR code")

Fixes: 8bdb3a2 ("uvesafb: the driver core")
Signed-off-by: Christophe JAILLET <[email protected]>
Signed-off-by: Helge Deller <[email protected]>
  • Loading branch information
tititiou36 authored and hdeller committed Dec 14, 2022
1 parent 35b4f4d commit a943710
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/video/fbdev/uvesafb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1758,6 +1758,7 @@ static int uvesafb_probe(struct platform_device *dev)
out_unmap:
iounmap(info->screen_base);
out_mem:
arch_phys_wc_del(par->mtrr_handle);
release_mem_region(info->fix.smem_start, info->fix.smem_len);
out_reg:
release_region(0x3c0, 32);
Expand Down

0 comments on commit a943710

Please sign in to comment.