Skip to content

Commit ab579ea

Browse files
committed
m68k: kernel: Fix indentation by 7 spaces in traps.c
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
1 parent 50802d8 commit ab579ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

arch/m68k/kernel/traps.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -486,10 +486,10 @@ static inline void bus_error030 (struct frame *fp)
486486
if (buserr_type & SUN3_BUSERR_INVALID) {
487487
if (!mmu_emu_handle_fault(addr, 1, 0))
488488
do_page_fault (&fp->ptregs, addr, 0);
489-
} else {
489+
} else {
490490
pr_debug("protection fault on insn access (segv).\n");
491491
force_sig (SIGSEGV);
492-
}
492+
}
493493
}
494494
#else
495495
#if defined(CPU_M68020_OR_M68030)
@@ -850,9 +850,9 @@ void show_registers(struct pt_regs *regs)
850850
pr_info("PC: [<%08lx>] %pS\n", regs->pc, (void *)regs->pc);
851851
pr_info("SR: %04x SP: %p a2: %08lx\n", regs->sr, regs, regs->a2);
852852
pr_info("d0: %08lx d1: %08lx d2: %08lx d3: %08lx\n",
853-
regs->d0, regs->d1, regs->d2, regs->d3);
853+
regs->d0, regs->d1, regs->d2, regs->d3);
854854
pr_info("d4: %08lx d5: %08lx a0: %08lx a1: %08lx\n",
855-
regs->d4, regs->d5, regs->a0, regs->a1);
855+
regs->d4, regs->d5, regs->a0, regs->a1);
856856

857857
pr_info("Process %s (pid: %d, task=%p)\n",
858858
current->comm, task_pid_nr(current), current);

0 commit comments

Comments
 (0)