]> git.itanic.dy.fi Git - linux-stable/commitdiff
m68k: kernel: Fix indentation by 7 spaces in traps.c
authorGeert Uytterhoeven <geert@linux-m68k.org>
Fri, 6 Oct 2023 14:41:12 +0000 (16:41 +0200)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Mon, 16 Oct 2023 12:30:39 +0000 (14:30 +0200)
Indentation should use TABs, not spaces.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/r/d1b38c9d389c1135f7856cf5f90852c2f1584c50.1696602993.git.geert@linux-m68k.org
arch/m68k/kernel/traps.c

index 8ee773d29954921cd7590a6d65454c98687ef734..53d0cf343d90f9b2aaa752d2f021b39d793eb32a 100644 (file)
@@ -486,10 +486,10 @@ static inline void bus_error030 (struct frame *fp)
        if (buserr_type & SUN3_BUSERR_INVALID) {
                if (!mmu_emu_handle_fault(addr, 1, 0))
                        do_page_fault (&fp->ptregs, addr, 0);
-       } else {
+       } else {
                pr_debug("protection fault on insn access (segv).\n");
                force_sig (SIGSEGV);
-       }
+       }
 }
 #else
 #if defined(CPU_M68020_OR_M68030)
@@ -850,9 +850,9 @@ void show_registers(struct pt_regs *regs)
        pr_info("PC: [<%08lx>] %pS\n", regs->pc, (void *)regs->pc);
        pr_info("SR: %04x  SP: %p  a2: %08lx\n", regs->sr, regs, regs->a2);
        pr_info("d0: %08lx    d1: %08lx    d2: %08lx    d3: %08lx\n",
-              regs->d0, regs->d1, regs->d2, regs->d3);
+               regs->d0, regs->d1, regs->d2, regs->d3);
        pr_info("d4: %08lx    d5: %08lx    a0: %08lx    a1: %08lx\n",
-              regs->d4, regs->d5, regs->a0, regs->a1);
+               regs->d4, regs->d5, regs->a0, regs->a1);
 
        pr_info("Process %s (pid: %d, task=%p)\n",
                current->comm, task_pid_nr(current), current);