Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 28 Jan 2002 18:22:15 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 28 Jan 2002 18:22:06 -0500 Received: from www.transvirtual.com ([206.14.214.140]:27909 "EHLO www.transvirtual.com") by vger.kernel.org with ESMTP id ; Mon, 28 Jan 2002 18:21:49 -0500 Date: Mon, 28 Jan 2002 15:21:39 -0800 (PST) From: James Simmons To: davej@suse.de cc: Geert Uytterhoeven , Linux Fbdev development list , Linux Kernel Mailing List Subject: Re: [PATCH] fbdev accel wrapper. II In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Oops. Forgot the patch. Here you go. diff -urN -X /home/jsimmons/dontdiff linux-2.5.2-dj6/drivers/video/Makefile linux/drivers/video/Makefile --- linux-2.5.2-dj6/drivers/video/Makefile Mon Jan 28 10:04:47 2002 +++ linux/drivers/video/Makefile Mon Jan 28 10:52:59 2002 @@ -14,7 +14,7 @@ fbcon-vga.o fbcon-iplan2p2.o fbcon-iplan2p4.o \ fbcon-iplan2p8.o fbcon-vga-planes.o fbcon-cfb16.o \ fbcon-cfb2.o fbcon-cfb24.o fbcon-cfb32.o fbcon-cfb4.o \ - fbcon-cfb8.o fbcon-mac.o fbcon-mfb.o \ + fbcon-cfb8.o fbcon-mac.o fbcon-mfb.o fbcon-accel.o \ cyber2000fb.o sa1100fb.o fbcon-hga.o # Each configuration option enables a list of files. @@ -136,6 +136,7 @@ obj-$(CONFIG_FBCON_VGA) += fbcon-vga.o obj-$(CONFIG_FBCON_HGA) += fbcon-hga.o obj-$(CONFIG_FBCON_STI) += fbcon-sti.o +obj-$(CONFIG_FBCON_ACCEL) += fbcon-accel.o include $(TOPDIR)/Rules.make diff -urN -X /home/jsimmons/dontdiff linux-2.5.2-dj6/drivers/video/fbcon-accel.c linux/drivers/video/fbcon-accel.c --- linux-2.5.2-dj6/drivers/video/fbcon-accel.c Wed Dec 31 16:00:00 1969 +++ linux/drivers/video/fbcon-accel.c Mon Jan 28 11:15:10 2002 @@ -0,0 +1,229 @@ +/* + * linux/drivers/video/fbcon-accel.c -- Framebuffer accel console wrapper + * + * Created 20 Feb 2001 by James Simmons + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file COPYING in the main directory of this archive for + * more details. + */ + +#include +#include +#include +#include +#include + +#include