]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
HID: fix comment in hid_input_report()
authorJiri Kosina <jkosina@suse.cz>
Tue, 4 Mar 2008 12:53:33 +0000 (13:53 +0100)
committerJiri 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

index d73a768e176e97becbcad37d5f26372d611ee482..f0b00ec1e47e7c1c0daf85cd6cc864f2c0c2c555 100644 (file)
@@ -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]);