Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43790
b: refs/heads/master
c: 6792951
h: refs/heads/master
v: v3
  • Loading branch information
Amol Lad authored and Linus Torvalds committed Dec 8, 2006
1 parent 9cacdc2 commit a8f9826
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b2a85aebf9d6cb671085d58dfbbd7b11269d49eb
refs/heads/master: 6792951b6ad13d7b2fff71ae7d2982b2fa1d6788
13 changes: 12 additions & 1 deletion trunk/drivers/video/atafb.c
Original file line number Diff line number Diff line change
Expand Up @@ -2804,8 +2804,19 @@ int __init atafb_init(void)
atafb_set_disp(-1, &fb_info);
do_install_cmap(0, &fb_info);

if (register_framebuffer(&fb_info) < 0)
if (register_framebuffer(&fb_info) < 0) {
#ifdef ATAFB_EXT
if (external_addr) {
iounmap(external_addr);
external_addr = NULL;
}
if (external_vgaiobase) {
iounmap((void*)external_vgaiobase);
external_vgaiobase = 0;
}
#endif
return -EINVAL;
}

printk("Determined %dx%d, depth %d\n",
disp.var.xres, disp.var.yres, disp.var.bits_per_pixel);
Expand Down

0 comments on commit a8f9826

Please sign in to comment.