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

Commit 4649e1f8 authored by Jordan Crouse's avatar Jordan Crouse Committed by Tarun Karra
Browse files

msm: kgsl: Store the profiling buffer gpuaddr as a uint64_t



The GPU address of the profiling buffer is stored in the command
batch struct and like all GPU addresses throughout the universe
it should be typed as a uint64_t.

Change-Id: Ic0dedbadf8694ff2e5247ef2112ddd699b53612b
Signed-off-by: default avatarJordan Crouse <jcrouse@codeaurora.org>
parent 32829884
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ struct kgsl_cmdbatch {
	struct timer_list timer;
	unsigned int marker_timestamp;
	struct kgsl_mem_entry *profiling_buf_entry;
	unsigned long profiling_buffer_gpuaddr;
	uint64_t profiling_buffer_gpuaddr;
	unsigned int profile_index;
	uint64_t submit_ticks;
	unsigned int global_ts;