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

Commit 82302a38 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "drm/msm: fix unwanted shift in blob property data"

parents 3550b274 b6b5e038
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -580,7 +580,7 @@ void *msm_property_get_blob(struct msm_property_info *info,
		blob = property_state->values[property_idx].blob;
		if (blob) {
			len = blob->length;
			rc = &blob->data;
			rc = blob->data;
		}
	}