Commit a22f803c authored by Alex Deucher's avatar Alex Deucher

drm/amdgpu: fix VCE ib alignment value

The VCE rings only require single dword alignment.
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c4795ca6
......@@ -299,7 +299,7 @@ static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file
for (i = 0; i < AMDGPU_MAX_VCE_RINGS; i++)
ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i);
ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
ib_size_alignment = 8;
ib_size_alignment = 1;
break;
default:
return -EINVAL;
......
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