mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
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>
This commit is contained in:
committed by
Alex Deucher
parent
1e18746381
commit
878f33f390
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user