aboutsummaryrefslogtreecommitdiffstats
path: root/rust/helpers/completion.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <[email protected]>2025-06-23 05:53:36 +0000
committerGreg Kroah-Hartman <[email protected]>2025-06-23 05:53:36 +0000
commit63dafeb392139b893a73b6331f347613f0929702 (patch)
tree44f928364b4e48c44b1ffe61d1578535de2a657a /rust/helpers/completion.c
parentdriver core: Add device_link_test() for testing device link flags (diff)
parentLinux 6.16-rc3 (diff)
downloadkernel-63dafeb392139b893a73b6331f347613f0929702.tar.gz
kernel-63dafeb392139b893a73b6331f347613f0929702.zip
Merge 6.16-rc3 into driver-core-next
We need the driver-core fixes that are in 6.16-rc3 into here as well to build on top of. Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'rust/helpers/completion.c')
-rw-r--r--rust/helpers/completion.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/rust/helpers/completion.c b/rust/helpers/completion.c
new file mode 100644
index 000000000000..b2443262a2ae
--- /dev/null
+++ b/rust/helpers/completion.c
@@ -0,0 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
+
+#include <linux/completion.h>
+
+void rust_helper_init_completion(struct completion *x)
+{
+ init_completion(x);
+}