aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/S3triofb.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/video/S3triofb.c b/drivers/video/S3triofb.c
index 397005eb392d..b3717c8f1bc2 100644
--- a/drivers/video/S3triofb.c
+++ b/drivers/video/S3triofb.c
@@ -535,8 +535,11 @@ static void __init s3triofb_of_init(struct device_node *dp)
535#endif 535#endif
536 536
537 fb_info.flags = FBINFO_FLAG_DEFAULT; 537 fb_info.flags = FBINFO_FLAG_DEFAULT;
538 if (register_framebuffer(&fb_info) < 0) 538 if (register_framebuffer(&fb_info) < 0) {
539 return; 539 iounmap(fb_info.screen_base);
540 fb_info.screen_base = NULL;
541 return;
542 }
540 543
541 printk("fb%d: S3 Trio frame buffer device on %s\n", 544 printk("fb%d: S3 Trio frame buffer device on %s\n",
542 fb_info.node, dp->full_name); 545 fb_info.node, dp->full_name);