xref: /linux/rust/helpers/poll.c (revision c7decec2f2d2ab0366567f9e30c0e1418cece43f)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/export.h>
4 #include <linux/poll.h>
5 
6 __rust_helper void rust_helper_poll_wait(struct file *filp,
7 					 wait_queue_head_t *wait_address,
8 					 poll_table *p)
9 {
10 	poll_wait(filp, wait_address, p);
11 }
12