aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2021-09-13 10:34:11 +0200
committerAlex Deucher <alexander.deucher@amd.com>2021-09-16 09:56:24 -0400
commitb287e4946873d706f94d95bdb2bf099dc8902181 (patch)
tree834b90543915d01e6eb166083bac7d3bc0ed0fee
parentdrm/amdgpu: Drop inline from amdgpu_ras_eeprom_max_record_count (diff)
downloadwireguard-linux-b287e4946873d706f94d95bdb2bf099dc8902181.tar.xz
wireguard-linux-b287e4946873d706f94d95bdb2bf099dc8902181.zip
drm/amdgpu: Demote TMZ unsupported log message from warning to info
As the user cannot do anything about the unsupported Trusted Memory Zone (TMZ) feature, do not warn about it, but make it informational, so demote the log level from warning to info. Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
index c7797eac83c3..9ff600a38559 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
@@ -598,7 +598,7 @@ void amdgpu_gmc_tmz_set(struct amdgpu_device *adev)
break;
default:
adev->gmc.tmz_enabled = false;
- dev_warn(adev->dev,
+ dev_info(adev->dev,
"Trusted Memory Zone (TMZ) feature not supported\n");
break;
}