summaryrefslogtreecommitdiffstats
path: root/block/bsg.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2017-07-02 23:03:13 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2017-11-27 16:20:00 -0500
commit1771e70a2ea40f01433de656195d85cc7732ead0 (patch)
tree34a95f8de4b28d5dc6cf8f934c48543d4268a1dd /block/bsg.c
parentb146e2ce804e76cffcfc17393ca7aa5e17e6037c (diff)
downloadlinux-0-day-1771e70a2ea40f01433de656195d85cc7732ead0.tar.gz
linux-0-day-1771e70a2ea40f01433de656195d85cc7732ead0.tar.xz
block: annotate ->poll() instances
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'block/bsg.c')
-rw-r--r--block/bsg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/bsg.c b/block/bsg.c
index 452f94f1c5d42..636bfcdb5d5f9 100644
--- a/block/bsg.c
+++ b/block/bsg.c
@@ -845,10 +845,10 @@ static int bsg_release(struct inode *inode, struct file *file)
return bsg_put_device(bd);
}
-static unsigned int bsg_poll(struct file *file, poll_table *wait)
+static __poll_t bsg_poll(struct file *file, poll_table *wait)
{
struct bsg_device *bd = file->private_data;
- unsigned int mask = 0;
+ __poll_t mask = 0;
poll_wait(file, &bd->wq_done, wait);
poll_wait(file, &bd->wq_free, wait);