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

Commit 63b3a7d0 authored by Jiri Kosina's avatar Jiri Kosina
Browse files

HID: alps: pass correct sizes to hid_hw_raw_request()



Calculating size of the report as sizeof(pointer) always passess the length
corresponding to the pointer type, not the underlying data report.

Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 41f61ecc
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -136,7 +136,8 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,

	input[7] = check_sum;
	ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, input,
			sizeof(input), HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
			sizeof(u8)*U1_FEATURE_REPORT_LEN, HID_FEATURE_REPORT,
			HID_REQ_SET_REPORT);

	if (ret < 0) {
		dev_err(&hdev->dev, "failed to read command (%d)\n", ret);
@@ -145,8 +146,8 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,

	if (read_flag) {
		ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, readbuf,
				sizeof(readbuf), HID_FEATURE_REPORT,
				HID_REQ_GET_REPORT);
				sizeof(u8)*U1_FEATURE_REPORT_LEN,
				HID_FEATURE_REPORT, HID_REQ_GET_REPORT);

		if (ret < 0) {
			dev_err(&hdev->dev, "failed read register (%d)\n", ret);