aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2015-06-02 13:05:41 +0200
committerAlex Deucher <alexander.deucher@amd.com>2015-08-05 13:47:51 -0400
commit76af5c249fa438d8466b7e7dbda318da8f829eac (patch)
tree7a013b36fa601f853a8aff057ba198d67ba580a5 /include
parent646f5411cf36413c903eb6db48b5e7febd893ec5 (diff)
amdgpu: remove bo_handle from amdgpu_cs_ib_info, IBs should be in buffer list
Reviewed-by: Christian König <christian.koenig@amd.com>
Diffstat (limited to 'include')
-rw-r--r--include/drm/amdgpu_drm.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/drm/amdgpu_drm.h b/include/drm/amdgpu_drm.h
index 9a811d22..179bd784 100644
--- a/include/drm/amdgpu_drm.h
+++ b/include/drm/amdgpu_drm.h
@@ -378,11 +378,7 @@ union drm_amdgpu_cs {
#define AMDGPU_IB_FLAG_PREAMBLE (1<<2)
struct drm_amdgpu_cs_chunk_ib {
- /**
- * Handle of GEM object to be used as IB or 0 if it is already in
- * residency list.
- */
- uint32_t handle;
+ uint32_t _pad;
uint32_t flags; /* IB Flags */
uint64_t va_start; /* Virtual address to begin IB execution */
uint32_t ib_bytes; /* Size of submission */