summaryrefslogtreecommitdiffstats
path: root/ipc/mqueue.c
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/mqueue.c')
-rw-r--r--ipc/mqueue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/mqueue.c b/ipc/mqueue.c
index 17bc8b874d92..3bc5bb7d6827 100644
--- a/ipc/mqueue.c
+++ b/ipc/mqueue.c
@@ -519,10 +519,10 @@ static int mqueue_flush_file(struct file *filp, fl_owner_t id)
519 return 0; 519 return 0;
520} 520}
521 521
522static unsigned int mqueue_poll_file(struct file *filp, struct poll_table_struct *poll_tab) 522static __poll_t mqueue_poll_file(struct file *filp, struct poll_table_struct *poll_tab)
523{ 523{
524 struct mqueue_inode_info *info = MQUEUE_I(file_inode(filp)); 524 struct mqueue_inode_info *info = MQUEUE_I(file_inode(filp));
525 int retval = 0; 525 __poll_t retval = 0;
526 526
527 poll_wait(filp, &info->wait_q, poll_tab); 527 poll_wait(filp, &info->wait_q, poll_tab);
528 528