Commit e3a165ff authored by Christian König's avatar Christian König Committed by Greg Kroah-Hartman

drm/radeon: fix UVD destroy IB size

commit 727ddc84 upstream.

The parameter is in bytes not dwords.
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ce5b8c45
......@@ -622,7 +622,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