[PATCH] sched/cputime: Fix errors in div64.h

From: huzhi001
Date: Wed Jul 12 2023 - 04:32:44 EST


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

Signed-off-by: ZhiHu <huzhi001@xxxxxxxxxx>
---
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;
}