Commit 43d569df authored by Andrey Panin's avatar Andrey Panin Committed by Linus Torvalds

[PATCH] missing FB_VISUAL_PSEUDOCOLOR in fb_prepare_logo()

This fixes the mighty penguin logo not appearing on visual workstation
framebuffer.  The trouble is missing 'case FB_VISUAL_PSEUDOCOLOR:' in
fb_prepare_logo() function.
parent 3f77cce8
...@@ -670,6 +670,7 @@ int fb_prepare_logo(struct fb_info *info) ...@@ -670,6 +670,7 @@ int fb_prepare_logo(struct fb_info *info)
case FB_VISUAL_MONO10: case FB_VISUAL_MONO10:
fb_logo.needs_logo = 1; fb_logo.needs_logo = 1;
break; break;
case FB_VISUAL_PSEUDOCOLOR:
case FB_VISUAL_STATIC_PSEUDOCOLOR: case FB_VISUAL_STATIC_PSEUDOCOLOR:
if (fb_logo.depth >= 8) { if (fb_logo.depth >= 8) {
fb_logo.needs_logo = 8; fb_logo.needs_logo = 8;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment