]> Git Repo - linux.git/commitdiff
HID: i2c-hid: print the correct data in dbg msg
authorJean-Baptiste Maneyrol <[email protected]>
Sun, 16 Nov 2014 14:45:43 +0000 (22:45 +0800)
committerJiri Kosina <[email protected]>
Tue, 18 Nov 2014 21:09:52 +0000 (22:09 +0100)
Report is received in "buffer"; fix the following i2c_hid_dbg()
to dump data from the correct pointer.

Signed-off-by: Jean-Baptiste Maneyrol <[email protected]>
[Antonio Borneo: cleanup and rebase to v3.17]
Signed-off-by: Antonio Borneo <[email protected]>
Reviewed-by: Benjamin Tissoires <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
drivers/hid/i2c-hid/i2c-hid.c

index 747d54421e733a407949f50762bb62c5e596fb34..933bf1052ec06b282eba735e6aa356bfb68483da 100644 (file)
@@ -437,7 +437,7 @@ static void i2c_hid_init_report(struct hid_report *report, u8 *buffer,
                        report->id, buffer, size))
                return;
 
-       i2c_hid_dbg(ihid, "report (len=%d): %*ph\n", size, size, ihid->inbuf);
+       i2c_hid_dbg(ihid, "report (len=%d): %*ph\n", size, size, buffer);
 
        ret_size = buffer[0] | (buffer[1] << 8);
 
This page took 0.057529 seconds and 4 git commands to generate.