summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
diff options
context:
space:
mode:
authorSunil Khatri <sunil.khatri@amd.com>2025-08-14 10:59:04 +0300
committerAlex Deucher <alexander.deucher@amd.com>2025-09-05 23:07:02 +0300
commit878f33f3907ae2e5751c1a3c4397f37b86e53494 (patch)
treec6fc8aaba724bec31b423fa7b821b5a32311ff6b /drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
parent1e18746381793bef7c715fc5ec5611a422a75c4c (diff)
downloadlinux-878f33f3907ae2e5751c1a3c4397f37b86e53494.tar.xz
drm/amdgpu: fix the formating for debugfs print
Fix the format of debugfs print in the mqd. Need to add a colon so parser can parse it properly. Signed-off-by: Sunil Khatri <sunil.khatri@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
index f72de06a4ac8..467e8fa6cb8b 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
@@ -364,7 +364,7 @@ static int amdgpu_mqd_info_read(struct seq_file *m, void *unused)
return -EINVAL;
}
- seq_printf(m, "queue_type %d\n", queue->queue_type);
+ seq_printf(m, "queue_type: %d\n", queue->queue_type);
seq_printf(m, "mqd_gpu_address: 0x%llx\n", amdgpu_bo_gpu_offset(queue->mqd.obj));
amdgpu_bo_unreserve(bo);