From: Urs.Ganse@t-online.de (Urs Ganse)
To: linux-kernel@vger.kernel.org
Cc: gtoumi@messel.emse.fr
Subject: fbmem.c lacks entries for sstfb
Date: Wed, 10 Oct 2001 15:05:52 +0200 [thread overview]
Message-ID: <20011010150552.A244@interblob> (raw)
[-- 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)
*/
reply other threads:[~2001-10-10 13:20 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20011010150552.A244@interblob \
--to=urs.ganse@t-online.de \
--cc=gtoumi@messel.emse.fr \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.