diff options
author | Alex Deucher <[email protected]> | 2022-01-14 09:59:29 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2022-01-14 18:08:01 -0500 |
commit | a8e6398ffe171c84b1c03a17eb6d432dc5f703a4 (patch) | |
tree | 1ce78c04d6733beecd4d85c1c9ebbdc5e55b9804 | |
parent | 5f0754ab2751d1935818459e8e71a8fe26f6403c (diff) |
drm/amdgpu: drop flags check for CHIP_IP_DISCOVERY
Support for IP based discovery is in place now so this
check is no longer required.
Reviewed-by: Hawking Zhang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c index 6d4eb1b72951..cc6585193236 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -1880,11 +1880,6 @@ static int amdgpu_pci_probe(struct pci_dev *pdev, return -ENODEV; } - if (flags == CHIP_IP_DISCOVERY) { - DRM_INFO("Unsupported asic. Remove me when IP discovery init is in place.\n"); - return -ENODEV; - } - if (amdgpu_virtual_display || amdgpu_device_asic_has_dc_support(flags & AMD_ASIC_MASK)) supports_atomic = true; |