Commit 727ddc84 authored by Christian König's avatar Christian König Committed by Alex Deucher

drm/radeon: fix UVD destroy IB size

The parameter is in bytes not dwords.
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c154a763
......@@ -621,7 +621,7 @@ static int radeon_uvd_send_msg(struct radeon_device *rdev,
if (r)
goto err;
r = radeon_ib_get(rdev, ring, &ib, NULL, 16);
r = radeon_ib_get(rdev, ring, &ib, NULL, 64);
if (r)
goto err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment