ARM: multi_v7_defconfig: Switch BCM2835 to sdhci-iproc.c for MMC
[linux/fpc-iii.git] / arch / m68k / include / asm / ptrace.h
bloba45cb6894ad36c86c663ff77798c4b419db07c1f
1 #ifndef _M68K_PTRACE_H
2 #define _M68K_PTRACE_H
4 #include <uapi/asm/ptrace.h>
6 #ifndef __ASSEMBLY__
8 #ifndef PS_S
9 #define PS_S (0x2000)
10 #define PS_M (0x1000)
11 #endif
13 #define user_mode(regs) (!((regs)->sr & PS_S))
14 #define instruction_pointer(regs) ((regs)->pc)
15 #define profile_pc(regs) instruction_pointer(regs)
16 #define current_pt_regs() \
17 (struct pt_regs *)((char *)current_thread_info() + THREAD_SIZE) - 1
18 #define current_user_stack_pointer() rdusp()
20 #define arch_has_single_step() (1)
22 #ifdef CONFIG_MMU
23 #define arch_has_block_step() (1)
24 #endif
26 #endif /* __ASSEMBLY__ */
27 #endif /* _M68K_PTRACE_H */