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

Commit f6ebc9f7 authored by Akhil P Oommen's avatar Akhil P Oommen Committed by Gerrit - the friendly Code Review server
Browse files

msm: kgsl: Fix incorrect length in GPU Powerup list for A6x GPU



GPU power up list is set with incorrect length for A608 and
A615 family of GPUs. Fix this by replacing with the correct value.

Change-Id: I7471a4821cc48dfa9ed21958bfd03125668497b1
Signed-off-by: default avatarAkhil P Oommen <akhilpo@codeaurora.org>
parent 6ba67ca0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -738,7 +738,7 @@ static void a6xx_patch_pwrup_reglist(struct adreno_device *adreno_dev)
			+ sizeof(a6xx_pwrup_reglist), a615_pwrup_reglist,
			sizeof(a615_pwrup_reglist));

		lock->list_length += sizeof(a615_pwrup_reglist);
		lock->list_length += sizeof(a615_pwrup_reglist) >> 2;
	}
}