diff options
author | Jiri Kosina <jkosina@suse.cz> | 2011-10-25 09:59:04 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-10-25 09:59:04 +0200 |
commit | b3aec7b686329e6bb65aa08c7f9458f7fd512f06 (patch) | |
tree | 67ae55567b5747f32ddd76dd63621bd2ca756a88 /drivers/hid/hid-debug.c | |
parent | f6f12427844516bc8e9cf84f43aca7bbbaa48157 (diff) | |
parent | 1bcc20675a1ac1ba47eaa201e02a89b0508e17b2 (diff) |
Merge branch 'upstream' into for-linus
Conflicts:
drivers/hid/hid-core.c
drivers/hid/hid-ids.h
Diffstat (limited to 'drivers/hid/hid-debug.c')
-rw-r--r-- | drivers/hid/hid-debug.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/hid/hid-debug.c b/drivers/hid/hid-debug.c index bae48745bb4..9a243ca96e6 100644 --- a/drivers/hid/hid-debug.c +++ b/drivers/hid/hid-debug.c @@ -450,6 +450,11 @@ void hid_dump_field(struct hid_field *field, int n, struct seq_file *f) { seq_printf(f, "Logical("); hid_resolv_usage(field->logical, f); seq_printf(f, ")\n"); } + if (field->application) { + tab(n, f); + seq_printf(f, "Application("); + hid_resolv_usage(field->application, f); seq_printf(f, ")\n"); + } tab(n, f); seq_printf(f, "Usage(%d)\n", field->maxusage); for (j = 0; j < field->maxusage; j++) { tab(n+2, f); hid_resolv_usage(field->usage[j].hid, f); seq_printf(f, "\n"); |