2023-07-13 07:53:35

by hexingwei001

[permalink] [raw]
Subject: [PATCH] mk68: sun3: mmu_emu: ERROR: "foo * bar" should be "foo *bar"

Fix one occurrences of the checkpatch.pl error:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Xingwei He <[email protected]>
---
arch/m68k/sun3/mmu_emu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/m68k/sun3/mmu_emu.c b/arch/m68k/sun3/mmu_emu.c
index 7321b3b76283..39b5eb120376 100644
--- a/arch/m68k/sun3/mmu_emu.c
+++ b/arch/m68k/sun3/mmu_emu.c
@@ -355,7 +355,7 @@ int mmu_emu_handle_fault (unsigned long vaddr, int
read_flag, int kernel_fault)
unsigned long segment, offset;
unsigned char context;
pte_t *pte;
- pgd_t * crp;
+ pgd_t *crp;

if(current->mm == NULL) {
crp = swapper_pg_dir;