From: Al Viro Date: Mon, 3 Jul 2017 03:03:13 +0000 (-0400) Subject: block: annotate ->poll() instances X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1771e70a2ea40f01433de656195d85cc7732ead0;p=openwrt%2Fstaging%2Fblogic.git block: annotate ->poll() instances Signed-off-by: Al Viro --- diff --git a/block/bsg.c b/block/bsg.c index 452f94f1c5d4..636bfcdb5d5f 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);