diff mbox series

nouveau/gsp: drop the gsp failure message to a debug.

Message ID 20231205020101.746744-1-airlied@gmail.com (mailing list archive)
State New, archived
Headers show
Series nouveau/gsp: drop the gsp failure message to a debug. | expand

Commit Message

Dave Airlie Dec. 5, 2023, 2:01 a.m. UTC
From: Dave Airlie <airlied@redhat.com>

These can happen in normal operations esp with auxch transactions.

Gets rid of
nouveau 0000:01:00.0: gsp: cli:0xc1d00002 obj:0x00730000 ctrl cmd:0x00731341 failed: 0x0000ffff
in logs.

Cc: Lyude <lyude@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
---
 drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Timur Tabi Dec. 5, 2023, 5:06 a.m. UTC | #1
On Tue, 2023-12-05 at 12:01 +1000, Dave Airlie wrote:
> These can happen in normal operations esp with auxch transactions.
> 
> Gets rid of
> nouveau 0000:01:00.0: gsp: cli:0xc1d00002 obj:0x00730000 ctrl cmd:0x00731341
> failed: 0x0000ffff
> in logs.

Is this something you want me to look into?
diff mbox series

Patch

diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c b/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c
index 72c14e7f6566..e72fe1ed0e8f 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c
@@ -641,7 +641,7 @@  r535_gsp_rpc_rm_ctrl_push(struct nvkm_gsp_object *object, void *argv, u32 repc)
 		return rpc;
 
 	if (rpc->status) {
-		nvkm_error(&gsp->subdev, "cli:0x%08x obj:0x%08x ctrl cmd:0x%08x failed: 0x%08x\n",
+		nvkm_debug(&gsp->subdev, "cli:0x%08x obj:0x%08x ctrl cmd:0x%08x failed: 0x%08x\n",
 			   object->client->object.handle, object->handle, rpc->cmd, rpc->status);
 		ret = ERR_PTR(-EINVAL);
 	} else {