traps.c (dca3a783400a18e2bf4503b1d4a85c4d0ca1a7e4) | traps.c (1ec9db1056b0c4b8b9dfca4736634c7c8e0833d5) |
---|---|
1/* 2 * Traps/Non-MMU Exception handling for ARC 3 * 4 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * vineetg: May 2011 11 * -user-space unaligned access emulation 12 * 13 * Rahul Trivedi: Codito Technologies 2004 14 */ 15 16#include <linux/sched.h> 17#include <linux/kdebug.h> 18#include <linux/uaccess.h> | 1/* 2 * Traps/Non-MMU Exception handling for ARC 3 * 4 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * vineetg: May 2011 11 * -user-space unaligned access emulation 12 * 13 * Rahul Trivedi: Codito Technologies 2004 14 */ 15 16#include <linux/sched.h> 17#include <linux/kdebug.h> 18#include <linux/uaccess.h> |
19#include <asm/ptrace.h> | 19#include <linux/ptrace.h> 20#include <linux/kprobes.h> 21#include <linux/kgdb.h> |
20#include <asm/setup.h> | 22#include <asm/setup.h> |
21#include <asm/kprobes.h> | |
22#include <asm/unaligned.h> | 23#include <asm/unaligned.h> |
23#include <asm/kgdb.h> | |
24 25void __init trap_init(void) 26{ 27 return; 28} 29 30void die(const char *str, struct pt_regs *regs, unsigned long address, 31 unsigned long cause_reg) --- 139 unchanged lines hidden --- | 24 25void __init trap_init(void) 26{ 27 return; 28} 29 30void die(const char *str, struct pt_regs *regs, unsigned long address, 31 unsigned long cause_reg) --- 139 unchanged lines hidden --- |