From: Adrian Bunk <bunk@stusta.de>
To: Ghozlane Toumi <gtoumi@laposte.net>
Cc: Antonino Daplas <adaplas@pol.net>,
linux-kernel@vger.kernel.org,
linux-fbdev-devel@lists.sourceforge.net
Subject: [2.6 patch] sstfb.c: make some code static
Date: Sun, 21 Nov 2004 16:36:46 +0100 [thread overview]
Message-ID: <20041121153646.GA2829@stusta.de> (raw)
The patch below makes some needlessly global code static.
diffstat output:
drivers/video/sstfb.c | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.6.10-rc2-mm2-full/drivers/video/sstfb.c.old 2004-11-21 14:59:23.000000000 +0100
+++ linux-2.6.10-rc2-mm2-full/drivers/video/sstfb.c 2004-11-21 16:02:43.000000000 +0100
@@ -1338,8 +1338,8 @@
/*
* Interface to the world
*/
-
-int __init sstfb_setup(char *options)
+#ifndef MODULE
+static int __init sstfb_setup(char *options)
{
char *this_opt;
@@ -1372,6 +1372,7 @@
}
return 0;
}
+#endif
static struct fb_ops sstfb_ops = {
.owner = THIS_MODULE,
@@ -1565,7 +1566,7 @@
};
-int __devinit sstfb_init(void)
+static int __devinit sstfb_init(void)
{
#ifndef MODULE
char *option = NULL;
@@ -1577,10 +1578,12 @@
return pci_module_init(&sstfb_driver);
}
-void __devexit sstfb_exit(void)
+#ifdef MODULE
+static void __devexit sstfb_exit(void)
{
pci_unregister_driver(&sstfb_driver);
}
+#endif
/*
next reply other threads:[~2004-11-21 15:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-11-21 15:36 Adrian Bunk [this message]
2004-11-24 22:49 ` [2.6 patch] sstfb.c: make some code static Alan Cox
2004-11-25 15:36 ` Adrian Bunk
2004-11-25 16:50 ` Alan Cox
-- strict thread matches above, loose matches on Subject: below --
2005-02-11 18:54 Adrian Bunk
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=20041121153646.GA2829@stusta.de \
--to=bunk@stusta.de \
--cc=adaplas@pol.net \
--cc=gtoumi@laposte.net \
--cc=linux-fbdev-devel@lists.sourceforge.net \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).