diff options
author | Thomas Zimmermann <[email protected]> | 2023-09-07 10:52:00 +0200 |
---|---|---|
committer | Thomas Zimmermann <[email protected]> | 2023-09-11 15:12:30 +0200 |
commit | 84a45f4c27d174ed21eab2671bee8137302803bc (patch) | |
tree | f4c57854d1d22fb169e79646c6ed6f99008452f1 | |
parent | 15d30b46573d75f5cb58cfacded8ebab9c76a2b0 (diff) |
fbdev/au1200fb: Do not display boot-up logo
The fbcon module takes care of displaying the logo, if any. Remove
the code form au1200fb. If we want to display the logo without fbcon,
we should implement this in the fbdev core code.
Signed-off-by: Thomas Zimmermann <[email protected]>
Acked-by: Javier Martinez Canillas <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/video/fbdev/au1200fb.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/video/fbdev/au1200fb.c b/drivers/video/fbdev/au1200fb.c index 5c232eb13724..e7997a7f177e 100644 --- a/drivers/video/fbdev/au1200fb.c +++ b/drivers/video/fbdev/au1200fb.c @@ -1719,15 +1719,6 @@ static int au1200fb_drv_probe(struct platform_device *dev) } au1200fb_fb_set_par(fbi); - -#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO) - if (plane == 0) - if (fb_prepare_logo(fbi, FB_ROTATE_UR)) { - /* Start display and show logo on boot */ - fb_set_cmap(&fbi->cmap, fbi); - fb_show_logo(fbi, FB_ROTATE_UR); - } -#endif } /* Now hook interrupt too */ |