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: <dbc24737ba923daee7d3b948cc028dc3@208suo.com>
Date:   Thu, 20 Jul 2023 14:14:30 +0800
From:   hanyu001@...suo.com
To:     James.Bottomley@...senPartnership.com, deller@....de
Cc:     linux-parisc@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] parisc: kernel:  "foo * bar" should be "foo *bar"

This patch fixes the checkpatch.pl error

./arch/parisc/kernel/sys_parisc32.c:29: ERROR: "foo * bar" should be 
"foo *bar"

Signed-off-by: Yu Han <hanyu001@...suo.com>
---
  arch/parisc/kernel/sys_parisc32.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/parisc/kernel/sys_parisc32.c 
b/arch/parisc/kernel/sys_parisc32.c
index 2a12a54..abe87d2 100644
--- a/arch/parisc/kernel/sys_parisc32.c
+++ b/arch/parisc/kernel/sys_parisc32.c
@@ -26,7 +26,7 @@ asmlinkage long sys32_unimplemented(int r26, int r25, 
int r24, int r23,

  asmlinkage long sys32_fanotify_mark(compat_int_t fanotify_fd, 
compat_uint_t flags,
      compat_uint_t mask0, compat_uint_t mask1, compat_int_t dfd,
-    const char  __user * pathname)
+    const char  __user *pathname)
  {
      return sys_fanotify_mark(fanotify_fd, flags,
              ((__u64)mask1 << 32) | mask0,

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ