浏览代码

Merge branch 'field-zeroing' into for-linus

Jiri Kosina 18 年之前
父节点
当前提交
11941a321d
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      drivers/hid/hid-core.c

+ 5 - 0
drivers/hid/hid-core.c

@@ -872,8 +872,13 @@ static void hid_output_field(struct hid_field *field, __u8 *data)
 	unsigned count = field->report_count;
 	unsigned offset = field->report_offset;
 	unsigned size = field->report_size;
+	unsigned bitsused = offset + count * size;
 	unsigned n;
 
+	/* make sure the unused bits in the last byte are zeros */
+	if (count > 0 && size > 0 && (bitsused % 8) != 0)
+		data[(bitsused-1)/8] &= (1 << (bitsused % 8)) - 1;
+
 	for (n = 0; n < count; n++) {
 		if (field->logical_minimum < 0)	/* signed values */
 			implement(data, offset + n * size, size, s32ton(field->value[n], size));