diff options
author | Jeff Brown <jeffbrown@google.com> | 2011-07-24 14:03:30 -0700 |
---|---|---|
committer | Dan Murphy <dmurphy@ti.com> | 2011-08-22 12:41:27 -0500 |
commit | dba5382c00fa0ac99aaf0a99eb20a0af936ec132 (patch) | |
tree | 2736a40a7f815533e11962a172bb0ca40c3c94a8 | |
parent | 376bd895afc6d8796a9fee0092270be1031ef84d (diff) | |
download | kernel_samsung_espresso10-dba5382c00fa0ac99aaf0a99eb20a0af936ec132.zip kernel_samsung_espresso10-dba5382c00fa0ac99aaf0a99eb20a0af936ec132.tar.gz kernel_samsung_espresso10-dba5382c00fa0ac99aaf0a99eb20a0af936ec132.tar.bz2 |
hid-debug: Show application usage for each collection.
Change-Id: If8d3ef8647209143b5f0c171c385d37faf82de64
Signed-off-by: jeffbrown@android.com
-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 bae4874..9a243ca 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"); |