Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261603AbVCHU3w (ORCPT ); Tue, 8 Mar 2005 15:29:52 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262079AbVCHU12 (ORCPT ); Tue, 8 Mar 2005 15:27:28 -0500 Received: from pentafluge.infradead.org ([213.146.154.40]:5333 "EHLO pentafluge.infradead.org") by vger.kernel.org with ESMTP id S262119AbVCHTnm (ORCPT ); Tue, 8 Mar 2005 14:43:42 -0500 Date: Tue, 8 Mar 2005 19:43:38 +0000 (GMT) From: James Simmons X-X-Sender: jsimmons@pentafluge.infradead.org To: linux-fbdev-devel@lists.sourceforge.net cc: linux-kernel@vger.kernel.org Subject: Re: [Linux-fbdev-devel] [announce 5/7] fbsplash - fbdev updates In-Reply-To: <20050308021417.GF26249@spock.one.pl> Message-ID: References: <20050308021417.GF26249@spock.one.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Score: 0.0 (/) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1197 Lines: 40 > diff -Nru a/drivers/video/fbcmap.c b/drivers/video/fbcmap.c > --- a/drivers/video/fbcmap.c 2005-03-07 16:50:34 +01:00 > +++ b/drivers/video/fbcmap.c 2005-03-07 16:50:34 +01:00 > @@ -16,6 +16,7 @@ > #include > #include > #include > +#include "fbsplash.h" > > #include > > @@ -235,6 +236,10 @@ > info)) > break; > } > + fb_copy_cmap(cmap, &info->cmap); > + if (fbsplash_active(info, vc_cons[fg_console].d) && > + info->fix.visual == FB_VISUAL_DIRECTCOLOR) > + fbsplash_fix_pseudo_pal(info, vc_cons[fg_console].d); > return 0; > } > > @@ -265,6 +270,9 @@ > if (transp) > transp++; > } > + if (fbsplash_active(info, vc_cons[fg_console].d) && > + info->fix.visual == FB_VISUAL_DIRECTCOLOR) > + fbsplash_fix_pseudo_pal(info, vc_cons[fg_console].d); > return 0; > } That is just gross. You are putting console code back into the fbdev core. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/