projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
751281c
)
drm/amdgpu/nv: fix codec array for SR_IOV
author
Alex Deucher
<alexander.deucher@amd.com>
Thu, 9 Mar 2023 03:45:59 +0000
(22:45 -0500)
committer
Alex Deucher
<alexander.deucher@amd.com>
Tue, 14 Mar 2023 14:40:41 +0000
(10:40 -0400)
Copy paste error.
Fixes: 384334120b66 ("drm/amdgpu/nv: don't expose AV1 if VCN0 is harvested")
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Link:
https://bugzilla.openanolis.cn/show_bug.cgi?id=4454
Cc: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Acked-by: Guchun Chen <guchun.chen@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/nv.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/nv.c
b/drivers/gpu/drm/amd/amdgpu/nv.c
index 855d390c41de159c85b3341289da14c7671931f4..22e25ca285f806b110371f14f5f14f701f7a53bf 100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/nv.c
+++ b/
drivers/gpu/drm/amd/amdgpu/nv.c
@@
-1055,8
+1055,8
@@
static int nv_common_late_init(void *handle)
amdgpu_virt_update_sriov_video_codec(adev,
sriov_sc_video_codecs_encode_array,
ARRAY_SIZE(sriov_sc_video_codecs_encode_array),
- sriov_sc_video_codecs_decode_array_vcn
1
,
- ARRAY_SIZE(sriov_sc_video_codecs_decode_array_vcn
1
));
+ sriov_sc_video_codecs_decode_array_vcn
0
,
+ ARRAY_SIZE(sriov_sc_video_codecs_decode_array_vcn
0
));
}
}