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: Jordan Crouse <jcrouse@codeaurora.org>
This commit is contained in:
Jordan Crouse 2015-07-21 22:11:31 -06:00 committed by Gerrit - the friendly Code Review server
parent 139176ea57
commit ffa9ff44bf
1 changed files with 1 additions and 1 deletions

View File

@ -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;