mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] arm64: extable:"(foo*)" should be "(foo *)"
       [not found] <tencent_1DFBBBDD0C944F003E04996E11065CA32906@qq.com>
@ 2023-07-14  5:37 ` chenqingyun001
  0 siblings, 0 replies; only message in thread
From: chenqingyun001 @ 2023-07-14  5:37 UTC (permalink / raw)
  To: catalin.marinas, will; +Cc: linux-kernel

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@208suo.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;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-07-14  5:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <tencent_1DFBBBDD0C944F003E04996E11065CA32906@qq.com>
2023-07-14  5:37 ` [PATCH] arm64: extable:"(foo*)" should be "(foo *)" chenqingyun001

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®