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