Skip to content

Commit 7b7fbab

Browse files
Ran Sunalexdeucher
authored andcommitted
drm/amdgpu: Clean up errors in amdgpu_trace.h
Fix the following errors reported by checkpatch: ERROR: space required after that ',' (ctx:VxV) ERROR: "foo* bar" should be "foo *bar" Signed-off-by: Ran Sun <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent 91aafa3 commit 7b7fbab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ TRACE_EVENT(amdgpu_vm_flush,
432432
),
433433
TP_printk("ring=%s, id=%u, hub=%u, pd_addr=%010Lx",
434434
__get_str(ring), __entry->vmid,
435-
__entry->vm_hub,__entry->pd_addr)
435+
__entry->vm_hub, __entry->pd_addr)
436436
);
437437

438438
DECLARE_EVENT_CLASS(amdgpu_pasid,
@@ -494,7 +494,7 @@ TRACE_EVENT(amdgpu_cs_bo_status,
494494
);
495495

496496
TRACE_EVENT(amdgpu_bo_move,
497-
TP_PROTO(struct amdgpu_bo* bo, uint32_t new_placement, uint32_t old_placement),
497+
TP_PROTO(struct amdgpu_bo *bo, uint32_t new_placement, uint32_t old_placement),
498498
TP_ARGS(bo, new_placement, old_placement),
499499
TP_STRUCT__entry(
500500
__field(struct amdgpu_bo *, bo)

0 commit comments

Comments
 (0)