mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu: add picasso to asic_type enum
Add picasso to amd_asic_type enum and amdgpu_asic_name[]. Signed-off-by: Likun Gao <Likun.Gao@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Huang Rui <ray.huang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
646b902598
commit
be9699e392
|
@ -89,6 +89,7 @@ static const char *amdgpu_asic_name[] = {
|
|||
"VEGA12",
|
||||
"VEGA20",
|
||||
"RAVEN",
|
||||
"PICASSO",
|
||||
"LAST",
|
||||
};
|
||||
|
||||
|
|
|
@ -49,6 +49,7 @@ enum amd_asic_type {
|
|||
CHIP_VEGA12,
|
||||
CHIP_VEGA20,
|
||||
CHIP_RAVEN,
|
||||
CHIP_PICASSO,
|
||||
CHIP_LAST,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue