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

Commit b6b5e038 authored by Samantha Tran's avatar Samantha Tran
Browse files

drm/msm: fix unwanted shift in blob property data



While trying to access the blob data, the pointer is seen in
the first 8 bytes causing the unwanted shift. This change
fixes that and returns the pointer data directly.

Change-Id: I366eb9ee1daf9fe39654f6e5000858fe600ecb51
Signed-off-by: default avatarSamantha Tran <samtran@codeaurora.org>
parent 1b559a78
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;
		}
	}