diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2021-08-10 00:28:34 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2021-10-04 22:23:01 +0300 |
commit | d0761fd24ea1e57ce4e4ae7e373fef7b8a2caed8 (patch) | |
tree | 963429a19936c6b2c4d539b288010e1256618575 /drivers/gpu/drm/amd | |
parent | 3ae695d691749aba2a15b2b0a3b2c6117d4bd247 (diff) | |
download | linux-d0761fd24ea1e57ce4e4ae7e373fef7b8a2caed8.tar.xz |
drm/amdgpu: set CHIP_IP_DISCOVERY as the asic type by default
For new chips with no explicit entry in the PCI ID list.
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c index 8f863ac8d733..b1fbfa1ed26f 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -1873,12 +1873,12 @@ static const struct pci_device_id pciidlist[] = { { PCI_DEVICE(0x1002, PCI_ANY_ID), .class = PCI_CLASS_DISPLAY_VGA << 8, .class_mask = 0xffffff, - .driver_data = 0 }, + .driver_data = CHIP_IP_DISCOVERY }, { PCI_DEVICE(0x1002, PCI_ANY_ID), .class = PCI_CLASS_DISPLAY_OTHER << 8, .class_mask = 0xffffff, - .driver_data = 0 }, + .driver_data = CHIP_IP_DISCOVERY }, {0, 0, 0} }; |