[PATCH] missing FB_VISUAL_PSEUDOCOLOR in fb_prepare_logo()

Andrey Panin (pazke@orbita1.ru)
Fri, 4 Apr 2003 13:58:37 +0400


This is a MIME-formatted message. If you see this text it means that your
E-mail software does not support MIME-formatted messages.

--=_courier-5591-1049450719-0001-2
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Hi,

this patch (2.5.66) fixes mighty penguin logo not appearing
on visual workstation framebuffer. The trouble is missing
'case FB_VISUAL_PSEUDOCOLOR:' in fb_prepare_logo() function.

Please apply.

Best regards.

-- 
Andrey Panin		| Embedded systems software developer
pazke@orbita1.ru	| PGP key: wwwkeys.pgp.net

--=_courier-5591-1049450719-0001-2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=patch-logo-fix

diff -urN -X /usr/share/dontdiff linux-2.5.66.vanilla/drivers/video/fbmem.c linux-2.5.66/drivers/video/fbmem.c --- linux-2.5.66.vanilla/drivers/video/fbmem.c Mon Mar 31 13:40:56 2003 +++ linux-2.5.66/drivers/video/fbmem.c Mon Mar 31 15:26:04 2003 @@ -670,6 +670,7 @@ case FB_VISUAL_MONO10: fb_logo.needs_logo = 1; break; + case FB_VISUAL_PSEUDOCOLOR: case FB_VISUAL_STATIC_PSEUDOCOLOR: if (fb_logo.depth >= 8) { fb_logo.needs_logo = 8;

--=_courier-5591-1049450719-0001-2--