diff options
author | Tvrtko Ursulin <[email protected]> | 2022-11-15 10:17:30 +0000 |
---|---|---|
committer | Tvrtko Ursulin <[email protected]> | 2022-11-15 16:27:08 +0000 |
commit | 443a8fbc796fb9bdcd734dee6dff0cba6b460e84 (patch) | |
tree | 676b772d37cb70e67d77fc195f1b92b6cdc98d8b | |
parent | 39a10b6ac5d18dd714e8a64c96cb72ef121ce963 (diff) |
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: a10234fda466 ("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]
-rw-r--r-- | drivers/gpu/drm/i915/i915_vma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c index 3b969d679c1e..947fde68e5f5 100644 --- a/drivers/gpu/drm/i915/i915_vma.c +++ b/drivers/gpu/drm/i915/i915_vma.c @@ -73,7 +73,7 @@ static void vma_print_allocator(struct i915_vma *vma, const char *reason) char buf[512]; if (!vma->node.stack) { - drm_dbg(&to_i915(vma->obj->base.dev)->drm + drm_dbg(&to_i915(vma->obj->base.dev)->drm, "vma.node [%08llx + %08llx] %s: unknown owner\n", vma->node.start, vma->node.size, reason); return; |