diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-11-06 14:02:44 +0100 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-11-06 14:07:15 +0100 |
commit | bbfd2bf9028a55cb85ff51eb34dc663b7e49ed55 (patch) | |
tree | f4af985bc825dbcf8cd586833d5e8b2708a90c1a /arch/avr32/kernel/syscall-stubs.S | |
parent | 168c8fa32ff40d6caf7226a5abf2a0096f3393bf (diff) |
AVR32: Wire up sys_epoll_pwait
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32/kernel/syscall-stubs.S')
-rw-r--r-- | arch/avr32/kernel/syscall-stubs.S | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/avr32/kernel/syscall-stubs.S b/arch/avr32/kernel/syscall-stubs.S index 7589a9b426c..890286a1e62 100644 --- a/arch/avr32/kernel/syscall-stubs.S +++ b/arch/avr32/kernel/syscall-stubs.S @@ -100,3 +100,12 @@ __sys_splice: rcall sys_splice sub sp, -4 popm pc + + .global __sys_epoll_pwait + .type __sys_epoll_pwait,@function +__sys_epoll_pwait: + pushm lr + st.w --sp, ARG6 + rcall sys_epoll_pwait + sub sp, -4 + popm pc |