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: <2424861c7a397e0e3a94890e2c381439@208suo.com>
Date:   Wed, 12 Jul 2023 16:27:52 +0800
From:   huzhi001@...suo.com
To:     tglx@...utronix.de, mingo@...hat.com, bp@...en8.de,
        dave.hansen@...ux.intel.com, x86@...nel.org
Cc:     hpa@...or.com, linux-kernel@...r.kernel.org
Subject: [PATCH] sched/cputime: Fix errors in div64.h

The following checkpatch errors are removed:
ERROR: space prohibited before that close parenthesis ')'

Signed-off-by: ZhiHu <huzhi001@...suo.com>
---
  arch/x86/include/asm/div64.h | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/include/asm/div64.h b/arch/x86/include/asm/div64.h
index b8f1dc0761e4..c8fd84d1b54d 100644
--- a/arch/x86/include/asm/div64.h
+++ b/arch/x86/include/asm/div64.h
@@ -65,7 +65,7 @@ static inline u64 mul_u32_u32(u32 a, u32 b)
      u32 high, low;

      asm ("mull %[b]" : "=a" (low), "=d" (high)
-             : [a] "a" (a), [b] "rm" (b) );
+             : [a] "a" (a), [b] "rm" (b));

      return low | ((u64)high) << 32;
  }

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ