lkml.org 
[lkml]   [2001]   [Oct]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subjectfbmem.c lacks entries for sstfb
Hi everyone!

Since 2.4.10, sstfb, the Voodoo 1/2 framebuffer driver is included in
the kernel tree. It works fine as a module, but when it is compiled
fixed into the kernel, it won't initialize 'cause the appropiate
entries in fbmem.c are missing (they exist in the ac-branch,
though). The patch is attached.

Sincerely,
Urs Ganse--- linux/drivers/video/fbmem.c~ Wed Oct 10 12:42:47 2001
+++ linux/drivers/video/fbmem.c Wed Oct 10 12:56:56 2001
@@ -124,6 +124,8 @@
extern int e1355fb_setup(char*);
extern int pvr2fb_init(void);
extern int pvr2fb_setup(char*);
+extern int sstfb_init(void);
+extern int sstfb_setup(char*);

static struct {
const char *name;
@@ -274,7 +276,9 @@
#ifdef CONFIG_FB_PVR2
{ "pvr2", pvr2fb_init, pvr2fb_setup },
#endif
-
+#ifdef CONFIG_FB_VOODOO1
+ { "sst", sstfb_init, sstfb_setup },
+#endif
/*
* Generic drivers that don't use resource management (yet)
*/
\
 
 \ /
  Last update: 2005-03-22 13:05    [W:0.026 / U:0.152 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site