diff options
author | Tony Luck <tony.luck@intel.com> | 2009-12-08 18:29:05 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2009-12-08 18:29:05 -0500 |
commit | 27a338a69ed9a8a672cd620f5fd7fa450209313c (patch) | |
tree | 720d2759f4b1a40c03d8cda773e1fec0f1050813 /arch | |
parent | 3ff6a468b45b5dfeb0e903e56f4eb27d34b2437c (diff) |
[IA64] Fix cut/paste detritus from unistd.h
Build warning:
<stdin>:1523:2: warning: #warning syscall recvmmsg not implemented
Because when recvmmesg was added, the previous syscall define was
cut&pasted, and a spurious "rt_" left in the name of the define.
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/include/asm/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/include/asm/unistd.h b/arch/ia64/include/asm/unistd.h index 9c72e36c5281..10a8f21ca9e3 100644 --- a/arch/ia64/include/asm/unistd.h +++ b/arch/ia64/include/asm/unistd.h | |||
@@ -311,7 +311,7 @@ | |||
311 | #define __NR_preadv 1319 | 311 | #define __NR_preadv 1319 |
312 | #define __NR_pwritev 1320 | 312 | #define __NR_pwritev 1320 |
313 | #define __NR_rt_tgsigqueueinfo 1321 | 313 | #define __NR_rt_tgsigqueueinfo 1321 |
314 | #define __NR_rt_recvmmsg 1322 | 314 | #define __NR_recvmmsg 1322 |
315 | 315 | ||
316 | #ifdef __KERNEL__ | 316 | #ifdef __KERNEL__ |
317 | 317 | ||