Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dfd347f0 authored by Jiri Kosina's avatar Jiri Kosina
Browse files

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: default avatarJiri Kosina <jkosina@suse.cz>
parent c9bde7ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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]);