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: v6.6-pxa1908~61736 X-Git-Url: https://git.dujemihanovic.xyz/?a=commitdiff_plain;h=7a1e524a5fe6c5bf9dd4488e946fa835fda8c3d9;p=linux.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 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 {