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

Commit c471c074 authored by Kyle Yan's avatar Kyle Yan Committed by Gerrit - the friendly Code Review server
Browse files

Merge "drm/msm/sde: correct read out of bit offset array" into msm-4.8

parents 0c1aef19 5af87900
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -323,9 +323,9 @@ static int _parse_dt_bit_offset(struct device_node *np,
	if (arr) {
		len /= sizeof(u32);
		for (i = 0, j = 0; i < len; j++) {
			prop_value[j][i] = be32_to_cpu(arr[i]);
			prop_value[j][0] = be32_to_cpu(arr[i]);
			i++;
			prop_value[j][i] = be32_to_cpu(arr[i]);
			prop_value[j][1] = be32_to_cpu(arr[i]);
			i++;
		}
	} else {