xref: /linux/rust/helpers/wait.c (revision 570172569238c66a482ec3eb5d766cc9cf255f69)
1*87634653SAndreas Hindborg // SPDX-License-Identifier: GPL-2.0
2*87634653SAndreas Hindborg 
3*87634653SAndreas Hindborg #include <linux/export.h>
4*87634653SAndreas Hindborg #include <linux/wait.h>
5*87634653SAndreas Hindborg 
rust_helper_init_wait(struct wait_queue_entry * wq_entry)6*87634653SAndreas Hindborg void rust_helper_init_wait(struct wait_queue_entry *wq_entry)
7*87634653SAndreas Hindborg {
8*87634653SAndreas Hindborg 	init_wait(wq_entry);
9*87634653SAndreas Hindborg }
10