Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;