[PATCH] arm64: extable:"(foo*)" should be "(foo *)"

From: chenqingyun001
Date: Fri Jul 14 2023 - 01:37:32 EST


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@xxxxxxxxxx>
---
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;