xref: /linux/rust/helpers/poll.c (revision 23b0f90ba871f096474e1c27c3d14f455189d2d9)
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