diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2019-07-04 03:04:01 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2019-07-04 03:04:01 +0000 |
commit | e5232479e76175960f546820c0d218353a3b2451 (patch) | |
tree | b184f4ba37971b0e41dddce1ccc255fd15d8aea5 /sys/dev/pci | |
parent | 1ca870a9c87c5bdff66ee862816930bc135e3d17 (diff) |
drm/amdgpu: add picasso to asic_type enum
From Likun Gao
be9699e3923000ea32c2f4522e1e4de333d21d47 in mainline linux
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c | 1 | ||||
-rw-r--r-- | sys/dev/pci/drm/include/drm/amd_asic_type.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c b/sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c index 0cd3ccca2fe..19456ce744b 100644 --- a/sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c +++ b/sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c @@ -89,6 +89,7 @@ static const char *amdgpu_asic_name[] = { "VEGA12", "VEGA20", "RAVEN", + "PICASSO", "LAST", }; diff --git a/sys/dev/pci/drm/include/drm/amd_asic_type.h b/sys/dev/pci/drm/include/drm/amd_asic_type.h index dd63d08cc54..5644fc679d6 100644 --- a/sys/dev/pci/drm/include/drm/amd_asic_type.h +++ b/sys/dev/pci/drm/include/drm/amd_asic_type.h @@ -49,6 +49,7 @@ enum amd_asic_type { CHIP_VEGA12, CHIP_VEGA20, CHIP_RAVEN, + CHIP_PICASSO, CHIP_LAST, }; |