summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>2017-05-12 12:34:46 +0100
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>2017-05-15 14:06:15 +0100
commit6d2e912cdb10c36ecc5fc4ab5f1bfb80a7fe211d (patch)
tree80cc11b0dbb01db604f58c40282c6fc88a8e8b8c
parent55be6653e014e48a5c9cb4977c81c1d7d7b037ab (diff)
i965: perf: fix pointer to integer cast
v2: Just use cast to uintptr_t (Chris) Reported-by: Mauro Rossi <issor.oruam@gmail.com> Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
-rw-r--r--src/mesa/drivers/dri/i965/brw_performance_query.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_performance_query.c b/src/mesa/drivers/dri/i965/brw_performance_query.c
index 95f112e99f..d1c4b6514b 100644
--- a/src/mesa/drivers/dri/i965/brw_performance_query.c
+++ b/src/mesa/drivers/dri/i965/brw_performance_query.c
@@ -833,7 +833,7 @@ open_i915_perf_oa_stream(struct brw_context *brw,
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.num_properties = ARRAY_SIZE(properties) / 2,
- .properties_ptr = (uint64_t)properties
+ .properties_ptr = (uintptr_t) properties,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, &param);
if (fd == -1) {