All of lore.kernel.org
 help / color / mirror / Atom feed
* fbmem.c lacks entries for sstfb
@ 2001-10-10 13:05 Urs Ganse
  0 siblings, 0 replies; only message in thread
From: Urs Ganse @ 2001-10-10 13:05 UTC (permalink / raw)
  To: linux-kernel; +Cc: gtoumi

[-- Attachment #1: Type: text/plain, Size: 332 bytes --]

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

[-- Attachment #2: fbmem-patch --]
[-- Type: text/plain, Size: 573 bytes --]

--- 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)
 	 */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-10-10 13:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-10 13:05 fbmem.c lacks entries for sstfb Urs Ganse

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.