V4L/DVB (3588): Remove VIDIOC_G/S_AUDOUT from msp3400
[linux-2.6/suspend2-2.6.18.git] / include / asm-alpha / poll.h
blob34f333b762a04b57e244ff0b2f9b2fe34df510c6
1 #ifndef __ALPHA_POLL_H
2 #define __ALPHA_POLL_H
4 #define POLLIN (1 << 0)
5 #define POLLPRI (1 << 1)
6 #define POLLOUT (1 << 2)
7 #define POLLERR (1 << 3)
8 #define POLLHUP (1 << 4)
9 #define POLLNVAL (1 << 5)
10 #define POLLRDNORM (1 << 6)
11 #define POLLRDBAND (1 << 7)
12 #define POLLWRNORM (1 << 8)
13 #define POLLWRBAND (1 << 9)
14 #define POLLMSG (1 << 10)
15 #define POLLREMOVE (1 << 11)
17 struct pollfd {
18 int fd;
19 short events;
20 short revents;
23 #endif