diff options
Diffstat (limited to 'rust/helpers/wait.c')
-rw-r--r-- | rust/helpers/wait.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rust/helpers/wait.c b/rust/helpers/wait.c new file mode 100644 index 000000000000..ae48e33d9da3 --- /dev/null +++ b/rust/helpers/wait.c @@ -0,0 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0 + +#include <linux/wait.h> + +void rust_helper_init_wait(struct wait_queue_entry *wq_entry) +{ + init_wait(wq_entry); +} |