aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/completion.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/completion.h b/include/linux/completion.h
index 124e4b4334c1..5d5aaae3af43 100644
--- a/include/linux/completion.h
+++ b/include/linux/completion.h
@@ -106,14 +106,4 @@ extern bool completion_done(struct completion *x);
106extern void complete(struct completion *); 106extern void complete(struct completion *);
107extern void complete_all(struct completion *); 107extern void complete_all(struct completion *);
108 108
109/**
110 * INIT_COMPLETION - reinitialize a completion structure
111 * @x: completion structure to be reinitialized
112 *
113 * This macro should be used to reinitialize a completion structure so it can
114 * be reused. This is especially important after complete_all() is used.
115 */
116#define INIT_COMPLETION(x) ((x).done = 0)
117
118
119#endif 109#endif