Commit dfd347f09c66beed2ae621aad5fd75535b1838d4

Authored by Jiri Kosina
1 parent c9bde7ad39

HID: fix comment in hid_input_report()

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/hid/hid-core.c
... ... @@ -968,7 +968,7 @@
968 968 size--;
969 969 }
970 970  
971   - /* dump the report descriptor */
  971 + /* dump the report */
972 972 dbg_hid("report %d (size %u) = ", n, size);
973 973 for (i = 0; i < size; i++)
974 974 dbg_hid_line(" %02x", data[i]);