From ed909ed144d678d81758537450ef7d2f8cbb1614 Mon Sep 17 00:00:00 2001 From: jsg Date: Fri, 8 Apr 2022 01:25:34 +0000 Subject: [PATCH] change "PSP runtime database doesn't exist" from warn to info suggested by kettenis@ --- sys/dev/pci/drm/amd/amdgpu/amdgpu_psp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/pci/drm/amd/amdgpu/amdgpu_psp.c b/sys/dev/pci/drm/amd/amdgpu/amdgpu_psp.c index fbd720bde43..88e5d0d1383 100644 --- a/sys/dev/pci/drm/amd/amdgpu/amdgpu_psp.c +++ b/sys/dev/pci/drm/amd/amdgpu/amdgpu_psp.c @@ -205,7 +205,7 @@ static bool psp_get_runtime_db_entry(struct amdgpu_device *adev, if (db_header.cookie != PSP_RUNTIME_DB_COOKIE_ID) { /* runtime db doesn't exist, exit */ - dev_warn(adev->dev, "PSP runtime database doesn't exist\n"); + dev_info(adev->dev, "PSP runtime database doesn't exist\n"); return false; } -- 2.20.1