drm/amdkfd: simplify cases
authorAlex Deucher <alexander.deucher@amd.com>
Tue, 27 Dec 2022 16:26:11 +0000 (11:26 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 5 Jan 2023 16:41:57 +0000 (11:41 -0500)
A number of the gfx8 cases were the same.  Clean them
up.

Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdkfd/kfd_device.c

index b893634..3de7f61 100644 (file)
@@ -262,23 +262,12 @@ struct kfd_dev *kgd2kfd_probe(struct amdgpu_device *adev, bool vf)
                        f2g = &gfx_v8_kfd2kgd;
                break;
        case CHIP_FIJI:
-               gfx_target_version = 80003;
-               f2g = &gfx_v8_kfd2kgd;
-               break;
        case CHIP_POLARIS10:
                gfx_target_version = 80003;
                f2g = &gfx_v8_kfd2kgd;
                break;
        case CHIP_POLARIS11:
-               gfx_target_version = 80003;
-               if (!vf)
-                       f2g = &gfx_v8_kfd2kgd;
-               break;
        case CHIP_POLARIS12:
-               gfx_target_version = 80003;
-               if (!vf)
-                       f2g = &gfx_v8_kfd2kgd;
-               break;
        case CHIP_VEGAM:
                gfx_target_version = 80003;
                if (!vf)