summaryrefslogtreecommitdiff
path: root/backport/backport-include/linux/completion.h
diff options
context:
space:
mode:
Diffstat (limited to 'backport/backport-include/linux/completion.h')
-rw-r--r--backport/backport-include/linux/completion.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backport/backport-include/linux/completion.h b/backport/backport-include/linux/completion.h
index 477530d2..f8ce5b1f 100644
--- a/backport/backport-include/linux/completion.h
+++ b/backport/backport-include/linux/completion.h
@@ -3,7 +3,7 @@
#include_next <linux/completion.h>
#include <linux/version.h>
-#if LINUX_VERSION_CODE < KERNEL_VERSION(3,13,0)
+#if LINUX_VERSION_IS_LESS(3,13,0)
/**
* reinit_completion - reinitialize a completion structure
* @x: pointer to completion structure that is to be reinitialized
@@ -16,6 +16,6 @@ static inline void reinit_completion(struct completion *x)
{
x->done = 0;
}
-#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(3,13,0) */
+#endif /* LINUX_VERSION_IS_LESS(3,13,0) */
#endif /* __BACKPORT_COMPLETION_H */