diff mbox series

drm/i915: Fix build failure with debug and extra logging enabled

Message ID 20221115143941.32097-1-janusz.krzysztofik@linux.intel.com (mailing list archive)
State New, archived
Headers show
Series drm/i915: Fix build failure with debug and extra logging enabled | expand

Commit Message

Janusz Krzysztofik Nov. 15, 2022, 2:39 p.m. UTC
A comma is missing, fix it.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 drivers/gpu/drm/i915/i915_vma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tvrtko Ursulin Nov. 15, 2022, 2:56 p.m. UTC | #1
On 15/11/2022 14:39, Janusz Krzysztofik wrote:
> A comma is missing, fix it.
> 
> Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> ---
>   drivers/gpu/drm/i915/i915_vma.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
> index 3b969d679c1e2..947fde68e5f53 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;

Yep, thanks, however already sent this morning: 
https://patchwork.freedesktop.org/series/110906/. Just waiting for CI to 
give it a green light, which is a bit pointless, nevertheless it's the 
process.

Regards,

Tvrtko
diff mbox series

Patch

diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
index 3b969d679c1e2..947fde68e5f53 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;