diff options
author | Andrew Morton <akpm@osdl.org> | 2006-03-28 13:56:22 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 21:16:02 +0400 |
commit | 7a1e524a5fe6c5bf9dd4488e946fa835fda8c3d9 (patch) | |
tree | 1bb01a06d4e269e7af14ac9c38e70349ab547404 /include | |
parent | 273577165cd206d2d6689ee4b18aa13de1ec4bde (diff) | |
download | linux-7a1e524a5fe6c5bf9dd4488e946fa835fda8c3d9.tar.xz |
[PATCH] alpha: make poll flags the same as other architectures
Renumber the recently-added POLLREMOVE and POLLRDHUP to line up with the other
architectures.
Cc: Davide Libenzi <davidel@xmailserver.org>
Cc: Ulrich Drepper <drepper@redhat.com>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Richard Henderson <rth@twiddle.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-alpha/poll.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-alpha/poll.h b/include/asm-alpha/poll.h index 95707182b3ed..76f89356b6a7 100644 --- a/include/asm-alpha/poll.h +++ b/include/asm-alpha/poll.h @@ -12,8 +12,8 @@ #define POLLWRNORM (1 << 8) #define POLLWRBAND (1 << 9) #define POLLMSG (1 << 10) -#define POLLREMOVE (1 << 11) -#define POLLRDHUP (1 << 12) +#define POLLREMOVE (1 << 12) +#define POLLRDHUP (1 << 13) struct pollfd { |