Commit 80f071a3 authored by Alex Deucher's avatar Alex Deucher

drm/amdkfd: demote unsupported device messages to dev_info

It's not really an error since the devices don't support
the necessary hardware functionality.

Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3331Tested-by: default avatarPaul Menzel <pmenzel@molgen.mpg.de>
Reviewed-by: default avatarPaul Menzel <pmenzel@molgen.mpg.de>
Reviewed-by: default avatarKent Russell <kent.russell@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 0208ca55
...@@ -435,12 +435,12 @@ struct kfd_dev *kgd2kfd_probe(struct amdgpu_device *adev, bool vf) ...@@ -435,12 +435,12 @@ struct kfd_dev *kgd2kfd_probe(struct amdgpu_device *adev, bool vf)
if (!f2g) { if (!f2g) {
if (amdgpu_ip_version(adev, GC_HWIP, 0)) 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", "GC IP %06x %s not supported in kfd\n",
amdgpu_ip_version(adev, GC_HWIP, 0), amdgpu_ip_version(adev, GC_HWIP, 0),
vf ? "VF" : ""); vf ? "VF" : "");
else 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" : ""); amdgpu_asic_name[adev->asic_type], vf ? "VF" : "");
return NULL; return NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment