From: Andrew Morton Date: Tue, 28 Mar 2006 09:56:22 +0000 (-0800) Subject: [PATCH] alpha: make poll flags the same as other architectures X-Git-Tag: v3.12-rc1~37070 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a1e524a5fe6c5bf9dd4488e946fa835fda8c3d9;p=kernel%2Fkernel-generic.git [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 Cc: Ulrich Drepper Cc: Ivan Kokshaysky Cc: Richard Henderson Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/asm-alpha/poll.h b/include/asm-alpha/poll.h index 9570718..76f8935 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 {