Skip to content

Commit 443a8fb

Browse files
committed
drm/i915: Fix vma allocator debug
Add a missing colon which I accidentally removed in the recent logging changes. Signed-off-by: Tvrtko Ursulin <[email protected]> Fixes: a10234f ("drm/i915: Partial abandonment of legacy DRM logging macros") Cc: Andrzej Hajda <[email protected]> Reviewed-by: Andrzej Hajda <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 39a10b6 commit 443a8fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/i915_vma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static void vma_print_allocator(struct i915_vma *vma, const char *reason)
7373
char buf[512];
7474

7575
if (!vma->node.stack) {
76-
drm_dbg(&to_i915(vma->obj->base.dev)->drm
76+
drm_dbg(&to_i915(vma->obj->base.dev)->drm,
7777
"vma.node [%08llx + %08llx] %s: unknown owner\n",
7878
vma->node.start, vma->node.size, reason);
7979
return;

0 commit comments

Comments
 (0)