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

drm/amdgpu: add yellow carp asic_type enum

This patch adds yellow carp to amd_asic_type enum and amdgpu_asic_name[].

Signed-off-by: Aaron Liu <aaron.liu@amd.com>
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Aaron Liu and committed by
Alex Deucher
ee9236b7 02680c23

+2
+1
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
··· 122 122 "VANGOGH", 123 123 "DIMGREY_CAVEFISH", 124 124 "BEIGE_GOBY", 125 + "YELLOW_CARP", 125 126 "LAST", 126 127 }; 127 128
+1
include/drm/amd_asic_type.h
··· 60 60 CHIP_VANGOGH, /* 31 */ 61 61 CHIP_DIMGREY_CAVEFISH, /* 32 */ 62 62 CHIP_BEIGE_GOBY, /* 33 */ 63 + CHIP_YELLOW_CARP, /* 34 */ 63 64 CHIP_LAST, 64 65 }; 65 66