diff options
author | Ken Wang <Qingqing.Wang@amd.com> | 2015-07-10 22:22:27 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2015-08-05 13:47:52 -0400 |
commit | 926c80568691e04abdfcd21b6e9be61331e95b03 (patch) | |
tree | bc358b99874cfc930c8e3853b9d3db3f7b4ecee9 /tests/amdgpu/cs_tests.c | |
parent | 01e4546ff34a57faaefd41fce323c691902501c5 (diff) | |
download | external_libdrm-926c80568691e04abdfcd21b6e9be61331e95b03.tar.gz external_libdrm-926c80568691e04abdfcd21b6e9be61331e95b03.tar.bz2 external_libdrm-926c80568691e04abdfcd21b6e9be61331e95b03.zip |
amdgpu : move management of user fence from libdrm to UMD
Signed-off-by: Ken Wang <Qingqing.Wang@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
Diffstat (limited to 'tests/amdgpu/cs_tests.c')
-rw-r--r-- | tests/amdgpu/cs_tests.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/amdgpu/cs_tests.c b/tests/amdgpu/cs_tests.c index b1e4d36b..3d9a1c2c 100644 --- a/tests/amdgpu/cs_tests.c +++ b/tests/amdgpu/cs_tests.c @@ -130,8 +130,7 @@ static int submit(unsigned ndw, unsigned ip) ibs_request.number_of_ibs = 1; ibs_request.ibs = &ib_info; - r = amdgpu_cs_submit(context_handle, 0, - &ibs_request, 1, &fence_status.fence); + r = amdgpu_cs_submit(context_handle, 0, &ibs_request, 1); if (r) return r; |