diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-17 10:04:31 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-17 10:04:31 -0800 |
commit | cd02e27b1514a27b2a8ab59755ae6d23d4d8a10f (patch) | |
tree | 75f624b82ab95446661a6322f644dae01dced710 /include/asm-i386 | |
parent | 6027994423e12a3c0b22d3dbf9ac87364ca4e0ec (diff) | |
download | op-kernel-dev-cd02e27b1514a27b2a8ab59755ae6d23d4d8a10f.zip op-kernel-dev-cd02e27b1514a27b2a8ab59755ae6d23d4d8a10f.tar.gz |
x86: Fix silly typo in recent <asm/signal.h> fixes
The second __const_sigaddset() should have been a sigdelset.. Compile
trouble noted by Greg K-H.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-i386')
-rw-r--r-- | include/asm-i386/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-i386/signal.h b/include/asm-i386/signal.h index 6ba29f1..76524b4 100644 --- a/include/asm-i386/signal.h +++ b/include/asm-i386/signal.h @@ -186,7 +186,7 @@ static __inline__ void __gen_sigdelset(sigset_t *set, int _sig) __asm__("btrl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc"); } -static __inline__ void __const_sigaddset(sigset_t *set, int _sig) +static __inline__ void __const_sigdelset(sigset_t *set, int _sig) { unsigned long sig = _sig - 1; set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW)); |