aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHannes Eder <hannes@hanneseder.net>2008-12-16 08:20:23 -0500
committerJiri Kosina <jkosina@suse.cz>2009-01-03 19:00:53 -0500
commit725cf0f47dbb02e0482f081828cff73f55479b79 (patch)
tree077843d1f7c44f61cbacf5c2813280ef48e6dd1d /include
parent079034073faf974973baa0256b029451f6e768ad (diff)
HID: avoid sparse warning in HID_COMPAT_LOAD_DRIVER
Impact: include a prototype for the exported function in the macro Fix about 20 of this warnings: drivers/hid/hid-a4tech.c:162:1: warning: symbol 'hid_compat_a4tech' was not declared. Should it be static? Signed-off-by: Hannes Eder <hannes@hanneseder.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include')
-rw-r--r--include/linux/hid.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h
index 215035bbb288..81aa84d60c6b 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -793,6 +793,8 @@ dbg_hid(const char *fmt, ...)
793 793
794#ifdef CONFIG_HID_COMPAT 794#ifdef CONFIG_HID_COMPAT
795#define HID_COMPAT_LOAD_DRIVER(name) \ 795#define HID_COMPAT_LOAD_DRIVER(name) \
796/* prototype to avoid sparse warning */ \
797extern void hid_compat_##name(void); \
796void hid_compat_##name(void) { } \ 798void hid_compat_##name(void) { } \
797EXPORT_SYMBOL(hid_compat_##name) 799EXPORT_SYMBOL(hid_compat_##name)
798#else 800#else