diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-02-07 13:05:13 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-02-14 14:22:08 +0900 |
commit | 5d0e146493a3306b931338ac030bc7a8de40c066 (patch) | |
tree | 08ee197b46b2cc27a4ea8a5e37a30d7933e9f26c /arch | |
parent | 87153058b2e3bedfd339dbfec5dd6dd3d98677b0 (diff) | |
download | blackbird-op-linux-5d0e146493a3306b931338ac030bc7a8de40c066.tar.gz blackbird-op-linux-5d0e146493a3306b931338ac030bc7a8de40c066.zip |
sh: Wire up new timerfd syscalls.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/kernel/syscalls_32.S | 4 | ||||
-rw-r--r-- | arch/sh/kernel/syscalls_64.S | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/arch/sh/kernel/syscalls_32.S b/arch/sh/kernel/syscalls_32.S index 719e127a7c05..a46cc3a41148 100644 --- a/arch/sh/kernel/syscalls_32.S +++ b/arch/sh/kernel/syscalls_32.S @@ -338,6 +338,8 @@ ENTRY(sys_call_table) .long sys_epoll_pwait .long sys_utimensat /* 320 */ .long sys_signalfd - .long sys_ni_syscall + .long sys_timerfd_create .long sys_eventfd .long sys_fallocate + .long sys_timerfd_settime /* 325 */ + .long sys_timerfd_gettime diff --git a/arch/sh/kernel/syscalls_64.S b/arch/sh/kernel/syscalls_64.S index 12c7340356ae..d5d7843aad94 100644 --- a/arch/sh/kernel/syscalls_64.S +++ b/arch/sh/kernel/syscalls_64.S @@ -376,6 +376,8 @@ sys_call_table: .long sys_epoll_pwait .long sys_utimensat .long sys_signalfd - .long sys_ni_syscall /* 350 */ + .long sys_timerfd_create /* 350 */ .long sys_eventfd .long sys_fallocate + .long sys_timerfd_settime + .long sys_timerfd_gettime |