lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <d9e5907b772bde22eefb26cb7e0e65e0@208suo.com>
Date:   Tue, 11 Jul 2023 14:12:55 +0800
From:   sunran001@...suo.com
To:     airlied@...il.com, daniel@...ll.ch
Cc:     dri-devel@...ts.freedesktop.org, nouveau@...ts.freedesktop.org,
        linux-kernel@...r.kernel.org
Subject: [PATCH] drm/nouveau: ERROR: (foo*) should be (foo *)

Fix two occurrences of the checkpatch.pl error:

ERROR: (foo*) should be (foo *)

Signed-off-by: Ran Sun <sunran001@...suo.com>
---
  drivers/gpu/drm/nouveau/nouveau_fence.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nouveau_fence.c 
b/drivers/gpu/drm/nouveau/nouveau_fence.c
index ee5e9d40c166..287885a3a37e 100644
--- a/drivers/gpu/drm/nouveau/nouveau_fence.c
+++ b/drivers/gpu/drm/nouveau/nouveau_fence.c
@@ -169,7 +169,7 @@ nouveau_fence_wait_uevent_handler(struct nvif_event 
*event, void *repv, u32 repc
  void
  nouveau_fence_context_new(struct nouveau_channel *chan, struct 
nouveau_fence_chan *fctx)
  {
-    struct nouveau_fence_priv *priv = (void*)chan->drm->fence;
+    struct nouveau_fence_priv *priv = (void *)chan->drm->fence;
      struct nouveau_cli *cli = (void *)chan->user.client;
      struct {
          struct nvif_event_v0 base;
@@ -207,7 +207,7 @@ int
  nouveau_fence_emit(struct nouveau_fence *fence, struct nouveau_channel 
*chan)
  {
      struct nouveau_fence_chan *fctx = chan->fence;
-    struct nouveau_fence_priv *priv = (void*)chan->drm->fence;
+    struct nouveau_fence_priv *priv = (void *)chan->drm->fence;
      int ret;

      fence->channel  = chan;

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ