mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/amdkfd: Use proper enum in pm_unmap_queues_v9()
Clang warns:
drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_packet_manager_v9.c:267:3:
error: implicit conversion from enumeration type 'enum
mes_map_queues_extended_engine_sel_enum' to different enumeration type
'enum mes_unmap_queues_extended_engine_sel_enum'
[-Werror,-Wenum-conversion]
extended_engine_sel__mes_map_queues__sdma0_to_7_sel :
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
Use 'extended_engine_sel__mes_unmap_queues__sdma0_to_7_sel' to eliminate
the warning, which is the same numeric value of the proper type.
Fixes: 009e9a1585
("drm/amdkfd: navi2x requires extended engines to map and unmap sdma queues")
Link: https://github.com/ClangBuiltLinux/linux/issues/1596
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
874bfdfa47
commit
b63c54d978
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ static int pm_unmap_queues_v9(struct packet_manager *pm, uint32_t *buffer,
|
|||
sizeof(struct pm4_mes_unmap_queues));
|
||||
|
||||
packet->bitfields2.extended_engine_sel = pm_use_ext_eng(pm->dqm->dev) ?
|
||||
extended_engine_sel__mes_map_queues__sdma0_to_7_sel :
|
||||
extended_engine_sel__mes_unmap_queues__sdma0_to_7_sel :
|
||||
extended_engine_sel__mes_unmap_queues__legacy_engine_sel;
|
||||
|
||||
packet->bitfields2.engine_sel =
|
||||
|
|
Loading…
Add table
Reference in a new issue