mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 08:31:39 +00:00
drm/amdgpu: fix default UVD context size
Context buffers should be denied by default, not allowed. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Leo Liu <leo.liu@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
11f55a3ae6
commit
e5a6858d8a
@ -435,7 +435,7 @@ static int amdgpu_uvd_cs_msg_decode(struct amdgpu_device *adev, uint32_t *msg,
|
||||
unsigned fs_in_mb = width_in_mb * height_in_mb;
|
||||
|
||||
unsigned image_size, tmp, min_dpb_size, num_dpb_buffer;
|
||||
unsigned min_ctx_size = 0;
|
||||
unsigned min_ctx_size = ~0;
|
||||
|
||||
image_size = width * height;
|
||||
image_size += image_size / 2;
|
||||
|
Loading…
Reference in New Issue
Block a user