MIPS: kernel: traps: Whitespace clean up
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
This commit is contained in:
parent
86bdb2779d
commit
b08a9c95f8
1 changed files with 10 additions and 7 deletions
|
@ -10,6 +10,7 @@
|
||||||
* Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
|
* Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
|
||||||
* Copyright (C) 2002, 2003, 2004, 2005, 2007 Maciej W. Rozycki
|
* Copyright (C) 2002, 2003, 2004, 2005, 2007 Maciej W. Rozycki
|
||||||
* Copyright (C) 2000, 2001, 2012 MIPS Technologies, Inc. All rights reserved.
|
* Copyright (C) 2000, 2001, 2012 MIPS Technologies, Inc. All rights reserved.
|
||||||
|
* Copyright (C) 2014, Imagination Technologies Ltd.
|
||||||
*/
|
*/
|
||||||
#include <linux/bug.h>
|
#include <linux/bug.h>
|
||||||
#include <linux/compiler.h>
|
#include <linux/compiler.h>
|
||||||
|
@ -876,14 +877,16 @@ asmlinkage void do_bp(struct pt_regs *regs)
|
||||||
opcode = (instr[0] << 16) | instr[1];
|
opcode = (instr[0] << 16) | instr[1];
|
||||||
} else {
|
} else {
|
||||||
/* MIPS16e mode */
|
/* MIPS16e mode */
|
||||||
if (__get_user(instr[0], (u16 __user *)msk_isa16_mode(epc)))
|
if (__get_user(instr[0],
|
||||||
|
(u16 __user *)msk_isa16_mode(epc)))
|
||||||
goto out_sigsegv;
|
goto out_sigsegv;
|
||||||
bcode = (instr[0] >> 6) & 0x3f;
|
bcode = (instr[0] >> 6) & 0x3f;
|
||||||
do_trap_or_bp(regs, bcode, "Break");
|
do_trap_or_bp(regs, bcode, "Break");
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (__get_user(opcode, (unsigned int __user *) exception_epc(regs)))
|
if (__get_user(opcode,
|
||||||
|
(unsigned int __user *) exception_epc(regs)))
|
||||||
goto out_sigsegv;
|
goto out_sigsegv;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue