diff options
author | Paul Mundt | 2007-02-07 11:11:35 +0100 |
---|---|---|
committer | Paul Mundt | 2007-02-13 02:54:46 +0100 |
commit | b37814352d2c4b83e0636e57f997c3a79d33be05 (patch) | |
tree | 8f2dca6fb9aab93cd7bc15d4e1c7ea836c9b3bb6 /include/asm-sh | |
parent | sh: dcache write-back for R7780RP PIO. (diff) | |
download | kernel-qcow2-linux-b37814352d2c4b83e0636e57f997c3a79d33be05.tar.gz kernel-qcow2-linux-b37814352d2c4b83e0636e57f997c3a79d33be05.tar.xz kernel-qcow2-linux-b37814352d2c4b83e0636e57f997c3a79d33be05.zip |
sh: Fix syscall numbering breakage.
We accidentally broke the inotify syscalls, fix those up again.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh')
-rw-r--r-- | include/asm-sh/unistd.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/asm-sh/unistd.h b/include/asm-sh/unistd.h index 7d0cd2b1371e..17f527bfd455 100644 --- a/include/asm-sh/unistd.h +++ b/include/asm-sh/unistd.h @@ -292,15 +292,15 @@ #define __NR_mq_getsetattr (__NR_mq_open+5) #define __NR_kexec_load 283 #define __NR_waitid 284 -/* #define __NR_sys_setaltroot 285 */ -#define __NR_add_key 286 -#define __NR_request_key 287 -#define __NR_keyctl 288 -#define __NR_ioprio_set 289 -#define __NR_ioprio_get 290 -#define __NR_inotify_init 291 -#define __NR_inotify_add_watch 292 -#define __NR_inotify_rm_watch 293 +#define __NR_add_key 285 +#define __NR_request_key 286 +#define __NR_keyctl 287 +#define __NR_ioprio_set 288 +#define __NR_ioprio_get 289 +#define __NR_inotify_init 290 +#define __NR_inotify_add_watch 291 +#define __NR_inotify_rm_watch 292 +/* 293 is unused */ #define __NR_migrate_pages 294 #define __NR_openat 295 #define __NR_mkdirat 296 |