xref: /linux/rust/helpers/completion.c (revision abd61d1ff8f0ea4cb099a1f3d5015dea7c8471cf)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/completion.h>
4 
5 void rust_helper_init_completion(struct completion *x)
6 {
7 	init_completion(x);
8 }
9