diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-07-22 02:05:07 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-07-24 22:34:00 -0700 |
commit | 29ed46015dd61f99d203ec7ab307ccf92d2d0cf2 (patch) | |
tree | a7e095a4106a3e7e58884fae24452cd05e536a90 /include/asm-sparc | |
parent | eb398d1044e0c1c19c2f5041acdb29ddb5bbc9f8 (diff) |
[SPARC]: Fix SA_STATIC_ALLOC value.
It alises IRQF_SHARED which causes all kinds of
problems.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc')
-rw-r--r-- | include/asm-sparc/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-sparc/signal.h b/include/asm-sparc/signal.h index 0ae5084c427b..d03a21c97abb 100644 --- a/include/asm-sparc/signal.h +++ b/include/asm-sparc/signal.h @@ -168,7 +168,7 @@ struct sigstack { * statically allocated data.. which is NOT GOOD. * */ -#define SA_STATIC_ALLOC 0x80 +#define SA_STATIC_ALLOC 0x8000 #endif #include <asm-generic/signal.h> |