diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-14 01:50:19 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-19 18:07:39 -0500 |
commit | 5208ba24e7826519d310474dedaed2f84b0ab6a0 (patch) | |
tree | 096a174031c17e47128918da5d8b609c886ca5e0 /arch/avr32 | |
parent | ae903caae267154de7cf8576b130ff474630596b (diff) |
missing user_stack_pointer() instances
for the architectures that have usp in pt_regs and do not have
user_stack_pointer() already defined.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/include/asm/ptrace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/avr32/include/asm/ptrace.h b/arch/avr32/include/asm/ptrace.h index 8d3c412fc65f..630e4f9bf5f0 100644 --- a/arch/avr32/include/asm/ptrace.h +++ b/arch/avr32/include/asm/ptrace.h | |||
@@ -21,6 +21,7 @@ | |||
21 | #define user_mode(regs) (((regs)->sr & MODE_MASK) == MODE_USER) | 21 | #define user_mode(regs) (((regs)->sr & MODE_MASK) == MODE_USER) |
22 | #define instruction_pointer(regs) ((regs)->pc) | 22 | #define instruction_pointer(regs) ((regs)->pc) |
23 | #define profile_pc(regs) instruction_pointer(regs) | 23 | #define profile_pc(regs) instruction_pointer(regs) |
24 | #define user_stack_pointer(regs) ((regs)->sp) | ||
24 | 25 | ||
25 | static __inline__ int valid_user_regs(struct pt_regs *regs) | 26 | static __inline__ int valid_user_regs(struct pt_regs *regs) |
26 | { | 27 | { |