summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2023-11-30 02:56:05 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2023-11-30 02:56:05 +0000
commitd55f2269a773080fd4b3e5e10e929e62051f258d (patch)
tree56175251d41337bdd6ccf7738c849515eb677fc5
parentaf484bb175cab8262114d56bc4dcc58d81b1679c (diff)
drm/amdgpu: lower CS errors to debug severity
From Christian Koenig 51ffa1a3792e3570ae2eb84d003c329b3d71da6c in linux-6.1.y/6.1.64 17daf01ab4e3e5a5929747aa05cc15eb2bad5438 in mainline linux
-rw-r--r--sys/dev/pci/drm/amd/amdgpu/amdgpu_cs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/amd/amdgpu/amdgpu_cs.c b/sys/dev/pci/drm/amd/amdgpu/amdgpu_cs.c
index 3fb90768002..b8e56b1a86a 100644
--- a/sys/dev/pci/drm/amd/amdgpu/amdgpu_cs.c
+++ b/sys/dev/pci/drm/amd/amdgpu/amdgpu_cs.c
@@ -1393,7 +1393,7 @@ int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
if (r == -ENOMEM)
DRM_ERROR("Not enough memory for command submission!\n");
else if (r != -ERESTARTSYS && r != -EAGAIN)
- DRM_ERROR("Failed to process the buffer list %d!\n", r);
+ DRM_DEBUG("Failed to process the buffer list %d!\n", r);
goto error_fini;
}