Skip to content

Commit

Permalink
cris: correct syscall numbers in unistd.h for timerfd_settime and tim…
Browse files Browse the repository at this point in the history
…erfd_gettime

Last commit for unistd was not correct, it only had a partial update of
syscall numbers for __NR_timerfd_settime and __NR_timerfd_gettime.  Also,
NR_syscalls was not incremented for the new syscalls.

Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Cc: Mikael Starvik <mikael.starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Jesper Nilsson authored and Linus Torvalds committed Mar 5, 2008
1 parent 07f2402 commit 87ffbe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/asm-cris/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -329,12 +329,12 @@
#define __NR_timerfd_create 322
#define __NR_eventfd 323
#define __NR_fallocate 324
#define __NR_timerfd_settime 315
#define __NR_timerfd_gettime 316
#define __NR_timerfd_settime 325
#define __NR_timerfd_gettime 326

#ifdef __KERNEL__

#define NR_syscalls 325
#define NR_syscalls 327

#include <asm/arch/unistd.h>

Expand Down

0 comments on commit 87ffbe6

Please sign in to comment.