]> www.infradead.org Git - users/hch/block.git/commitdiff
drm/amdkfd: demote unsupported device messages to dev_info
authorAlex Deucher <alexander.deucher@amd.com>
Fri, 19 Apr 2024 13:57:56 +0000 (09:57 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 23 Apr 2024 16:08:30 +0000 (12:08 -0400)
It's not really an error since the devices don't support
the necessary hardware functionality.

Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3331
Tested-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-by: Kent Russell <kent.russell@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdkfd/kfd_device.c

index 719d6d365e15016abca596bb7d9d1994b6e54996..9596bca572129d108e5f3d2f80f815e8e011a68a 100644 (file)
@@ -435,12 +435,12 @@ struct kfd_dev *kgd2kfd_probe(struct amdgpu_device *adev, bool vf)
 
        if (!f2g) {
                if (amdgpu_ip_version(adev, GC_HWIP, 0))
-                       dev_err(kfd_device,
+                       dev_info(kfd_device,
                                "GC IP %06x %s not supported in kfd\n",
                                amdgpu_ip_version(adev, GC_HWIP, 0),
                                vf ? "VF" : "");
                else
-                       dev_err(kfd_device, "%s %s not supported in kfd\n",
+                       dev_info(kfd_device, "%s %s not supported in kfd\n",
                                amdgpu_asic_name[adev->asic_type], vf ? "VF" : "");
                return NULL;
        }