* Re: HID: make compat functions static
@ 2008-09-04 22:20 Jiri Slaby
0 siblings, 0 replies; only message in thread
From: Jiri Slaby @ 2008-09-04 22:20 UTC (permalink / raw)
To: Harvey Harrison; +Cc: Jiri Kosina, Linux Kernel Mailing List
Hi,
does the hid-dummy module runtime-link after the change?
ANSI C standard says:
* In the set of translation units and libraries that constitutes an entire
program, each declaration of a particular identifier with external linkage
denotes the same object or function. Within one translation unit, each
declaration of an identifier with _internal linkage_ denotes the same object or
function. Each declaration of an identifier with no linkage denotes a unique entity.
* If the declaration of a file scope identifier for an object or a function
contains the storage-class specifier _static_, the identifier has _internal linkage_.
* For an identifier declared with the storage-class specifier _extern_ in a scope
in which a _prior declaration_ of that identifier is visible, if the prior
declaration specifies _internal_ or external linkage, the linkage of the
identifier at the later declaration _is the same as the linkage specified at the
prior declaration_. If no prior declaration is visible, or if the prior
declaration specifies no linkage, then the identifier has external linkage.
(Note that EXPORT_SYMBOL adds extern.)
I can't find any extension of gnu C to this which would permit that so I think
and correct me if I'm wrong, the commit is incorrect? Even according to nm, the
symbol is local, e.g.:
0000000000000120 t hid_compat_monterey
From: Harvey Harrison <harvey.harrison@gmail.com>
Date: Tue, 2 Sep 2008 16:05:43 +0000 (+0200)
Subject: HID: make compat functions static
X-Git-Url:
http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fjikos%2Fhid.git;a=commitdiff_plain;h=f72f87666264c9d4880166bcc69cb5c4cf210449
HID: make compat functions static
Done to avoid sparse warnings about undeclared functions.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
---
diff --git a/include/linux/hid.h b/include/linux/hid.h
index 15ee33e..164ce7f 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -794,7 +794,7 @@ dbg_hid(const char *fmt, ...)
#ifdef CONFIG_HID_COMPAT
#define HID_COMPAT_LOAD_DRIVER(name) \
-void hid_compat_##name(void) { } \
+static void hid_compat_##name(void) { } \
EXPORT_SYMBOL(hid_compat_##name)
#else
#define HID_COMPAT_LOAD_DRIVER(name)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-09-04 22:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-04 22:20 HID: make compat functions static Jiri Slaby
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox