]> git.hungrycats.org Git - linux/commitdiff
[PATCH] remove __ARCH_SI_BAND_T
authorAndrew Morton <akpm@osdl.org>
Thu, 1 Apr 2004 05:51:27 +0000 (21:51 -0800)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Thu, 1 Apr 2004 05:51:27 +0000 (21:51 -0800)
All architectures now make this `long', so we can remove the arch override.

include/asm-generic/siginfo.h

index 3550227a96737e31787a16898f3fc59e3875ec43..ed7ff725b96a81b3e64a2a2653dd6c0d2d64ea60 100644 (file)
@@ -26,10 +26,6 @@ typedef union sigval {
 #define __ARCH_SI_UID_T        uid_t
 #endif
 
-#ifndef __ARCH_SI_BAND_T
-#define __ARCH_SI_BAND_T long int
-#endif
-
 #ifndef HAVE_ARCH_SIGINFO_T
 
 typedef struct siginfo {
@@ -81,7 +77,7 @@ typedef struct siginfo {
 
                /* SIGPOLL */
                struct {
-                       __ARCH_SI_BAND_T _band; /* POLL_IN, POLL_OUT, POLL_MSG */
+                       long _band;     /* POLL_IN, POLL_OUT, POLL_MSG */
                        int _fd;
                } _sigpoll;
        } _sifields;