projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9bde7a
)
HID: fix comment in hid_input_report()
author
Jiri Kosina
<jkosina@suse.cz>
Tue, 4 Mar 2008 12:53:33 +0000
(13:53 +0100)
committer
Jiri Kosina
<jkosina@suse.cz>
Tue, 18 Mar 2008 10:20:32 +0000
(11:20 +0100)
The hid_input_report() in debug mode of course outputs the report itself, not
the device report descriptor.
Fix this error in comment.
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/hid-core.c
patch
|
blob
|
history
diff --git
a/drivers/hid/hid-core.c
b/drivers/hid/hid-core.c
index d73a768e176e97becbcad37d5f26372d611ee482..f0b00ec1e47e7c1c0daf85cd6cc864f2c0c2c555 100644
(file)
--- a/
drivers/hid/hid-core.c
+++ b/
drivers/hid/hid-core.c
@@
-968,7
+968,7
@@
int hid_input_report(struct hid_device *hid, int type, u8 *data, int size, int i
size--;
}
- /* dump the report
descriptor
*/
+ /* dump the report */
dbg_hid("report %d (size %u) = ", n, size);
for (i = 0; i < size; i++)
dbg_hid_line(" %02x", data[i]);