From: jsg Date: Fri, 8 Apr 2022 01:25:34 +0000 (+0000) Subject: change "PSP runtime database doesn't exist" from warn to info X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ed909ed144d678d81758537450ef7d2f8cbb1614;p=openbsd change "PSP runtime database doesn't exist" from warn to info suggested by kettenis@ --- 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; }