[PARISC] wire up timerfd syscalls

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

+6
+3
arch/parisc/kernel/syscall_table.S
··· 404 404 ENTRY_SAME(ni_syscall) /* was timerfd */ 405 405 ENTRY_SAME(eventfd) 406 406 ENTRY_COMP(fallocate) /* 305 */ 407 + ENTRY_SAME(timerfd_create) 408 + ENTRY_COMP(timerfd_settime) 409 + ENTRY_COMP(timerfd_gettime) 407 410 408 411 /* Nothing yet */ 409 412
+3
include/asm-parisc/unistd.h
··· 798 798 #define __NR_timerfd (__NR_Linux + 303) 799 799 #define __NR_eventfd (__NR_Linux + 304) 800 800 #define __NR_fallocate (__NR_Linux + 305) 801 + #define __NR_timerfd_create (__NR_Linux + 306) 802 + #define __NR_timerfd_settime (__NR_Linux + 307) 803 + #define __NR_timerfd_gettime (__NR_Linux + 308) 801 804 802 805 #define __NR_Linux_syscalls (__NR_fallocate + 1) 803 806