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

From: hexingwei001
Date: Thu Jul 13 2023 - 03:38:52 EST


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

Signed-off-by: Xingwei He <hexingwei001@xxxxxxxxxx>
---
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;