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: <bdb970b5a7c7253d43e4be3470b73f1e@208suo.com>
Date:   Thu, 20 Jul 2023 14:28:14 +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] risc: kernel: Added missing spaces

Fix checkpatch warnings:

./arch/parisc/kernel/unaligned.c:339: ERROR: spaces required around that 
'=' (ctx:VxV)
./arch/parisc/kernel/unaligned.c:339: ERROR: space required after that 
',' (ctx:VxV)
./arch/parisc/kernel/unaligned.c:339: ERROR: spaces required around that 
'=' (ctx:VxV)

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

diff --git a/arch/parisc/kernel/unaligned.c 
b/arch/parisc/kernel/unaligned.c
index e8a4d77..752d0d0 100644
--- a/arch/parisc/kernel/unaligned.c
+++ b/arch/parisc/kernel/unaligned.c
@@ -336,7 +336,7 @@ static int emulate_std(struct pt_regs *regs, int 
frreg, int flop)
      : "r19", "r20", "r21", "r22", "r1" );
  #else
      {
-    unsigned long valh=(val>>32),vall=(val&0xffffffffl);
+    unsigned long valh = (val>>32), vall = (val&0xffffffffl);
      __asm__ __volatile__ (
  "    mtsp    %4, %%sr1\n"
  "    zdep    %2, 29, 2, %%r19\n"

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ