]> www.infradead.org Git - users/hch/misc.git/commitdiff
drm/amdgpu: fix the formating for debugfs print
authorSunil Khatri <sunil.khatri@amd.com>
Thu, 14 Aug 2025 07:59:04 +0000 (13:29 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 5 Sep 2025 20:07:02 +0000 (16:07 -0400)
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>
drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c

index f72de06a4ac821b95b8fc64bd84b0896adbce826..467e8fa6cb8b01764f3a160b9871c9fdeb7402eb 100644 (file)
@@ -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);