HID: fix unused rsize usage
authorJiri Kosina <jkosina@suse.cz>
Mon, 22 Jul 2013 15:11:44 +0000 (17:11 +0200)
committerJiri Kosina <jkosina@suse.cz>
Mon, 22 Jul 2013 15:11:44 +0000 (17:11 +0200)
27ce4050 ("HID: fix data access in implement()") by mistake removed
a setting of buffer size in hidp. Fix that by putting it back.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
net/bluetooth/hidp/core.c

index 212980f..2e658ad 100644 (file)
@@ -242,6 +242,7 @@ static int hidp_send_report(struct hidp_session *session, struct hid_report *rep
        hid_output_report(report, buf);
        hdr = HIDP_TRANS_DATA | HIDP_DATA_RTYPE_OUPUT;
 
+       rsize = ((report->size - 1) >> 3) + 1 + (report->id > 0);
        ret = hidp_send_intr_message(session, hdr, buf, rsize);
 
        kfree(buf);