diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-04-08 01:25:35 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-04-08 01:25:35 +0000 |
commit | 25c5a5a8ffc4f71847047b854e02b32a80a636b5 (patch) | |
tree | f35b94d58c0effab9c2296272128643ffca731de | |
parent | 887f678bf8989e86995bc71cf1b3f9e1d6121a99 (diff) |
change "PSP runtime database doesn't exist" from warn to info
suggested by kettenis@
-rw-r--r-- | sys/dev/pci/drm/amd/amdgpu/amdgpu_psp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |