[<prev] [next>] [day] [month] [year] [list]
Message-ID: <74dd71ee7fa975cec2927d291936207b@208suo.com>
Date: Fri, 14 Jul 2023 13:37:23 +0800
From: chenqingyun001@...suo.com
To: catalin.marinas@....com, will@...nel.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] arm64: extable:"(foo*)" should be "(foo *)"
The variable name of the needle type is preceded
by parentheses without a space between the
parentheses and the asterisk. This will make
the code look unclear, and may conflict with
some tools or compilers.
Signed-off-by: Qingyun Chen <chenqingyun001@...suo.com>
---
arch/arm64/mm/extable.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/mm/extable.c b/arch/arm64/mm/extable.c
index 228d681a8715..c89a52870ca9 100644
--- a/arch/arm64/mm/extable.c
+++ b/arch/arm64/mm/extable.c
@@ -42,7 +42,7 @@ ex_handler_load_unaligned_zeropad(const struct
exception_table_entry *ex,
offset = addr & 0x7UL;
addr &= ~0x7UL;
- data = *(unsigned long*)addr;
+ data = *(unsigned long *)addr;
#ifndef __AARCH64EB__
data >>= 8 * offset;
Powered by blists - more mailing lists