Skip to content

Commit

Permalink
HID: hid-debug.c: make local symbols static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
H Hartley Sweeten authored and Jiri Kosina committed Jan 15, 2010
1 parent 4bb9508 commit 62e62da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/hid/hid-debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 62e62da

Please sign in to comment.