[PATCH] riscv: kernel: remove space before ')'

hanyu001 at 208suo.com hanyu001 at 208suo.com
Mon Jul 17 00:48:37 PDT 2023


Fixes checkpatch errors:

riscv/kernel/probes:ERROR:space prohibited before that close parenthesis 
')'
riscv/kernel/probes:ERROR:space prohibited before that close parenthesis 
')'
riscv/kernel/probes:ERROR:space prohibited before that close parenthesis 
')'

Signed-off-by: ztt <1549089851 at qq.com>
---
  arch/riscv/kernel/probes/simulate-insn.c | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/riscv/kernel/probes/simulate-insn.c 
b/arch/riscv/kernel/probes/simulate-insn.c
index 7441ac8a6843..60792c79b42e 100644
--- a/arch/riscv/kernel/probes/simulate-insn.c
+++ b/arch/riscv/kernel/probes/simulate-insn.c
@@ -128,10 +128,10 @@ bool __kprobes simulate_auipc(u32 opcode, unsigned 
long addr, struct pt_regs *re
      (((opcode) >> 12) & 0x7)

  #define branch_imm(opcode) \
-    (((((opcode) >>  8) & 0xf ) <<  1) | \
+    (((((opcode) >>  8) & 0xf) <<  1) | \
       ((((opcode) >> 25) & 0x3f) <<  5) | \
-     ((((opcode) >>  7) & 0x1 ) << 11) | \
-     ((((opcode) >> 31) & 0x1 ) << 12))
+     ((((opcode) >>  7) & 0x1) << 11) | \
+     ((((opcode) >> 31) & 0x1) << 12))

  #define branch_offset(opcode) \
      sign_extend32((branch_imm(opcode)), 12)



More information about the linux-riscv mailing list