AVR32: Wire up sys_epoll_pwait

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>

+12 -1
+9
arch/avr32/kernel/syscall-stubs.S
··· 100 100 rcall sys_splice 101 101 sub sp, -4 102 102 popm pc 103 + 104 + .global __sys_epoll_pwait 105 + .type __sys_epoll_pwait,@function 106 + __sys_epoll_pwait: 107 + pushm lr 108 + st.w --sp, ARG6 109 + rcall sys_epoll_pwait 110 + sub sp, -4 111 + popm pc
+1
arch/avr32/kernel/syscall_table.S
··· 286 286 .long sys_sync_file_range 287 287 .long sys_tee 288 288 .long sys_vmsplice 289 + .long __sys_epoll_pwait /* 265 */ 289 290 .long sys_ni_syscall /* r8 is saturated at nr_syscalls */
+2 -1
include/asm-avr32/unistd.h
··· 280 280 #define __NR_sync_file_range 262 281 281 #define __NR_tee 263 282 282 #define __NR_vmsplice 264 283 + #define __NR_epoll_pwait 265 283 284 284 285 #ifdef __KERNEL__ 285 - #define NR_syscalls 265 286 + #define NR_syscalls 266 286 287 287 288 288 289 #define __ARCH_WANT_IPC_PARSE_VERSION