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

hexingwei001@208suo.com posted 1 patch 2 years, 7 months ago
arch/m68k/sun3/mmu_emu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] mk68: sun3: mmu_emu: ERROR: "foo * bar" should be "foo *bar"
Posted by hexingwei001@208suo.com 2 years, 7 months ago
Fix one occurrences of the checkpatch.pl error:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Xingwei He <hexingwei001@208suo.com>
---
  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;