Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amdgpu: fix cyan_skillfish2 gpu info fw handling

If the board supports IP discovery, we don't need to
parse the gpu info firmware.

Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/4721
Fixes: fa819e3a7c1e ("drm/amdgpu: add support for cyan skillfish gpu_info")
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

+2
+2
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
··· 2665 2665 chip_name = "navi12"; 2666 2666 break; 2667 2667 case CHIP_CYAN_SKILLFISH: 2668 + if (adev->discovery.bin) 2669 + return 0; 2668 2670 chip_name = "cyan_skillfish"; 2669 2671 break; 2670 2672 }