diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2010-01-14 19:10:07 -0700 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-01-15 11:38:51 +0100 |
commit | 62e62da856dba2edb897b672cbd05a69edd4485c (patch) | |
tree | b6780622d92b431cbb901c150b02fa72620ee2fc /drivers/hid/hid-debug.c | |
parent | 4bb9508bbbb06f10bc3e249dd34375b4a4d6bfc0 (diff) | |
download | linux-3.10-62e62da856dba2edb897b672cbd05a69edd4485c.tar.gz linux-3.10-62e62da856dba2edb897b672cbd05a69edd4485c.tar.bz2 linux-3.10-62e62da856dba2edb897b672cbd05a69edd4485c.zip |
HID: hid-debug.c: make local symbols static
hid-debug.c: make local symbols static
The symbols hid_resolv_event and hid_dump_input_mapping
are only used locally in this file. Make them static to prevent
the following sparse warnings:
warning: symbol 'hid_resolv_event' was not declared. Should it be static?
warning: symbol 'hid_dump_input_mapping' was not declared. Should it be static?
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-debug.c')
-rw-r--r-- | drivers/hid/hid-debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hid/hid-debug.c b/drivers/hid/hid-debug.c index 6abd0369aed..cd4ece6fdfb 100644 --- a/drivers/hid/hid-debug.c +++ b/drivers/hid/hid-debug.c @@ -864,13 +864,13 @@ static const char **names[EV_MAX + 1] = { [EV_SND] = sounds, [EV_REP] = repeats, }; -void hid_resolv_event(__u8 type, __u16 code, struct seq_file *f) { - +static void hid_resolv_event(__u8 type, __u16 code, struct seq_file *f) +{ seq_printf(f, "%s.%s", events[type] ? events[type] : "?", names[type] ? (names[type][code] ? names[type][code] : "?") : "?"); } -void hid_dump_input_mapping(struct hid_device *hid, struct seq_file *f) +static void hid_dump_input_mapping(struct hid_device *hid, struct seq_file *f) { int i, j, k; struct hid_report *report; |