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>] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 19 Jul 2023 16:48:39 +0800
From:   hanyu001@...suo.com
To:     vkoul@...nel.org
Cc:     dmaengine@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] dma: at_hdmac: "(foo*)" should be "(foo *)"

This patch fixes the checkpatch.pl error:

./drivers/dma/at_hdmac.c:1119: ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: Yu Han <hanyu001@...suo.com>
---
  drivers/dma/at_hdmac.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c
index ee3a219..af747a7 100644
--- a/drivers/dma/at_hdmac.c
+++ b/drivers/dma/at_hdmac.c
@@ -1116,7 +1116,7 @@ static int atdma_create_memset_lli(struct dma_chan 
*chan,
      /* Only the first byte of value is to be used according to 
dmaengine */
      fill_pattern = (char)value;

-    *(u32*)vaddr = (fill_pattern << 24) |
+    *(u32 *)vaddr = (fill_pattern << 24) |
                 (fill_pattern << 16) |
                 (fill_pattern << 8) |
                 fill_pattern;

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ