mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] fixup! WIP: video: implement quick-n-dirty framebuffer console
@ 2015-07-12 10:07 Antony Pavlov
  2015-07-13  6:26 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Antony Pavlov @ 2015-07-12 10:07 UTC (permalink / raw)
  To: barebox

---
Sascha moved fbconsole registration to common fb code.
So we can drop this supefluous code.
---
 drivers/video/sdl.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/video/sdl.c b/drivers/video/sdl.c
index 5407a1a..a568340 100644
--- a/drivers/video/sdl.c
+++ b/drivers/video/sdl.c
@@ -69,13 +69,8 @@ static int sdlfb_probe(struct device_d *dev)
 	dev->priv = fb;
 
 	ret = register_framebuffer(fb);
-	if (!ret) {
-		extern int register_fbconsole(struct fb_info *fb);
-
-		register_fbconsole(fb);
-
+	if (!ret)
 		return 0;
-	}
 
 err:
 	kfree(fb->screen_base);
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-07-13  6:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-12 10:07 [PATCH] fixup! WIP: video: implement quick-n-dirty framebuffer console Antony Pavlov
2015-07-13  6:26 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox