diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2017-07-03 01:02:18 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-11-27 16:20:05 -0500 |
commit | 076ccb76e1a6cf0aa5371132efdd502a11e806f1 (patch) | |
tree | 6917e5c6896f75226fe97e09a236c502fe0637f5 /fs/eventpoll.c | |
parent | 9dd957485d7d896ec18d8e2f9dd410efe71eca34 (diff) | |
download | linux-stable-076ccb76e1a6cf0aa5371132efdd502a11e806f1.tar.gz linux-stable-076ccb76e1a6cf0aa5371132efdd502a11e806f1.tar.bz2 linux-stable-076ccb76e1a6cf0aa5371132efdd502a11e806f1.zip |
fs: annotate ->poll() instances
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/eventpoll.c')
-rw-r--r-- | fs/eventpoll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/eventpoll.c b/fs/eventpoll.c index 21e6fee00e8b..67fb3b850c99 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -920,7 +920,7 @@ static int ep_read_events_proc(struct eventpoll *ep, struct list_head *head, return 0; } -static unsigned int ep_eventpoll_poll(struct file *file, poll_table *wait) +static __poll_t ep_eventpoll_poll(struct file *file, poll_table *wait) { struct eventpoll *ep = file->private_data; int depth = 0; |