Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753629AbXFWSg0 (ORCPT ); Sat, 23 Jun 2007 14:36:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751692AbXFWSgR (ORCPT ); Sat, 23 Jun 2007 14:36:17 -0400 Received: from smtp2.linux-foundation.org ([207.189.120.14]:51306 "EHLO smtp2.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751884AbXFWSgP (ORCPT ); Sat, 23 Jun 2007 14:36:15 -0400 Date: Sat, 23 Jun 2007 11:35:57 -0700 From: Andrew Morton To: spock@gentoo.org Cc: linux-fbdev-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/4] fbdev: uvesafb driver Message-Id: <20070623113557.f0295218.akpm@linux-foundation.org> In-Reply-To: <20070623105243.GD12623@spock.one.pl> References: <20070623105243.GD12623@spock.one.pl> X-Mailer: Sylpheed 2.4.1 (GTK+ 2.8.17; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 30805 Lines: 1096 On Sat, 23 Jun 2007 12:52:43 +0200 Michal Januszewski wrote: > Add the uvesafb driver, an enhanced version of vesafb that makes use of > a userspace helper to run x86 Video BIOS code. > > Signed-off-by: Michal Januszewski > --- > drivers/video/Kconfig | 18 + > drivers/video/Makefile | 1 + > drivers/video/uvesafb.c | 1902 +++++++++++++++++++++++++++++++++++++++++++++++ > include/video/Kbuild | 2 +- > include/video/uvesafb.h | 208 ++++++ > 5 files changed, 2130 insertions(+), 1 deletions(-) > > diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig > index 403dac7..5cc03f9 100644 > --- a/drivers/video/Kconfig > +++ b/drivers/video/Kconfig > @@ -585,6 +585,24 @@ config FB_TGA > > Say Y if you have one of those. > > +config FB_UVESA > + tristate "Userspace VESA VGA graphics support" > + depends on FB && CONNECTOR These dependencies are insufficient. > ... > > --- /dev/null > +++ b/drivers/video/uvesafb.c > @@ -0,0 +1,1902 @@ > +/* > + * A framebuffer driver for VBE 2.0+ compliant video cards > + * > + * (c) 2007 Michal Januszewski > + * Loosely based upon the vesafb driver. > + * > + */ > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include