summaryrefslogtreecommitdiff
path: root/tools/virtio/linux/completion.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/virtio/linux/completion.h')
-rw-r--r--tools/virtio/linux/completion.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/virtio/linux/completion.h b/tools/virtio/linux/completion.h
new file mode 100644
index 000000000000..5e54b679721b
--- /dev/null
+++ b/tools/virtio/linux/completion.h
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _LINUX_COMPLETION_H
+#define _LINUX_COMPLETION_H
+
+struct completion {
+ unsigned int done;
+};
+
+#endif /* _LINUX_COMPLETION_H */