diff options
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/Kconfig | 2 | ||||
-rw-r--r-- | arch/avr32/include/asm/ptrace.h | 1 | ||||
-rw-r--r-- | arch/avr32/include/asm/unistd.h | 1 | ||||
-rw-r--r-- | arch/avr32/include/uapi/asm/signal.h | 6 |
4 files changed, 1 insertions, 9 deletions
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index e40c9bd79143..2ae6591b3a55 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
@@ -17,8 +17,6 @@ config AVR32 | |||
17 | select GENERIC_CLOCKEVENTS | 17 | select GENERIC_CLOCKEVENTS |
18 | select HAVE_MOD_ARCH_SPECIFIC | 18 | select HAVE_MOD_ARCH_SPECIFIC |
19 | select MODULES_USE_ELF_RELA | 19 | select MODULES_USE_ELF_RELA |
20 | select GENERIC_KERNEL_THREAD | ||
21 | select GENERIC_KERNEL_EXECVE | ||
22 | help | 20 | help |
23 | AVR32 is a high-performance 32-bit RISC microprocessor core, | 21 | AVR32 is a high-performance 32-bit RISC microprocessor core, |
24 | designed for cost-sensitive embedded applications, with particular | 22 | designed for cost-sensitive embedded applications, with particular |
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 | { |
diff --git a/arch/avr32/include/asm/unistd.h b/arch/avr32/include/asm/unistd.h index f05a9804e8e2..0bdf6371574e 100644 --- a/arch/avr32/include/asm/unistd.h +++ b/arch/avr32/include/asm/unistd.h | |||
@@ -39,7 +39,6 @@ | |||
39 | #define __ARCH_WANT_SYS_GETPGRP | 39 | #define __ARCH_WANT_SYS_GETPGRP |
40 | #define __ARCH_WANT_SYS_RT_SIGACTION | 40 | #define __ARCH_WANT_SYS_RT_SIGACTION |
41 | #define __ARCH_WANT_SYS_RT_SIGSUSPEND | 41 | #define __ARCH_WANT_SYS_RT_SIGSUSPEND |
42 | #define __ARCH_WANT_SYS_EXECVE | ||
43 | #define __ARCH_WANT_SYS_FORK | 42 | #define __ARCH_WANT_SYS_FORK |
44 | #define __ARCH_WANT_SYS_VFORK | 43 | #define __ARCH_WANT_SYS_VFORK |
45 | #define __ARCH_WANT_SYS_CLONE | 44 | #define __ARCH_WANT_SYS_CLONE |
diff --git a/arch/avr32/include/uapi/asm/signal.h b/arch/avr32/include/uapi/asm/signal.h index eb46f61adb7d..1b77a93eff50 100644 --- a/arch/avr32/include/uapi/asm/signal.h +++ b/arch/avr32/include/uapi/asm/signal.h | |||
@@ -89,12 +89,6 @@ typedef unsigned long sigset_t; | |||
89 | #define SA_NOMASK SA_NODEFER | 89 | #define SA_NOMASK SA_NODEFER |
90 | #define SA_ONESHOT SA_RESETHAND | 90 | #define SA_ONESHOT SA_RESETHAND |
91 | 91 | ||
92 | /* | ||
93 | * sigaltstack controls | ||
94 | */ | ||
95 | #define SS_ONSTACK 1 | ||
96 | #define SS_DISABLE 2 | ||
97 | |||
98 | #define MINSIGSTKSZ 2048 | 92 | #define MINSIGSTKSZ 2048 |
99 | #define SIGSTKSZ 8192 | 93 | #define SIGSTKSZ 8192 |
100 | 94 | ||