[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20240111071109.9779-1-chenguohua_716@163.com>
Date: Thu, 11 Jan 2024 07:11:09 +0000
From: GuoHua Chen <chenguohua_716@....com>
To: mripard@...nel.org,
airlied@...il.com,
maarten.lankhorst@...ux.intel.com,
zackr@...are.com,
tzimmermann@...e.de,
daniel@...ll.ch
Cc: linux-kernel@...r.kernel.org,
dri-devel@...ts.freedesktop.org,
GuoHua Chen <chenguohua_716@....com>
Subject: [PATCH] drm/vmwgfx: Clean up errors in vmwgfx_streamoutput.c
Fix the following errors reported by checkpatch:
ERROR: space prohibited before that close parenthesis ')'
Signed-off-by: GuoHua Chen <chenguohua_716@....com>
---
drivers/gpu/drm/vmwgfx/vmwgfx_streamoutput.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_streamoutput.c b/drivers/gpu/drm/vmwgfx/vmwgfx_streamoutput.c
index edcc40659038..3daff9537bf8 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_streamoutput.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_streamoutput.c
@@ -96,7 +96,7 @@ static int vmw_dx_streamoutput_unscrub(struct vmw_resource *res)
SVGA3dCmdDXBindStreamOutput body;
} *cmd;
- if (!list_empty(&so->cotable_head) || !so->committed )
+ if (!list_empty(&so->cotable_head) || !so->committed)
return 0;
cmd = VMW_CMD_CTX_RESERVE(dev_priv, sizeof(*cmd), so->ctx->id);
@@ -363,6 +363,6 @@ void vmw_dx_streamoutput_cotable_list_scrub(struct vmw_private *dev_priv,
list_for_each_entry_safe(entry, next, list, cotable_head) {
WARN_ON(vmw_dx_streamoutput_scrub(&entry->res));
if (!readback)
- entry->committed =false;
+ entry->committed = false;
}
}
--
2.17.1
Powered by blists - more mailing lists