From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg KH Subject: Re: fbdev sysfs support. Date: Fri, 6 Feb 2004 17:15:44 -0800 Sender: linux-kernel-owner@vger.kernel.org Message-ID: <20040207011544.GC4492@kroah.com> References: <20040207005954.GB4492@kroah.com> Mime-Version: 1.0 Return-path: Content-Disposition: inline In-Reply-To: List-Id: Cc: Linus Torvalds , Linux Fbdev development list , Linux Kernel Mailing List On Sat, Feb 07, 2004 at 01:01:35AM +0000, James Simmons wrote: > diff -urN -X /home/jsimmons/dontdiff linus-2.6/drivers/video/fbmem.c fbdev-2.6/drivers/video/fbmem.c > --- linus-2.6/drivers/video/fbmem.c 2004-01-27 19:48:11.000000000 -0800 > +++ fbdev-2.6/drivers/video/fbmem.c 2004-02-06 03:45:53.000000000 -0800 > @@ -1228,6 +1228,9 @@ > break; > fb_info->node = i; > > + if (fb_add_class_device(fb_info)) > + return -EINVAL; > + Woah, what about all of the fb drivers that statically allocate their fb_info structure? This will die a horrible death for them when they try to unload themselves. Are you going to fix up every fb driver to call framebuffer_alloc() to fix this problem? That's quite a task... thanks, greg k-h