From e13e44d9a81da4bf77d9869db5b4764fc0811d9f Mon Sep 17 00:00:00 2001 From: Johannes Berg Date: Tue, 7 Feb 2017 23:04:11 +0100 Subject: backports: always use new version compare macros Signed-off-by: Johannes Berg --- backport/backport-include/linux/debugfs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'backport/backport-include/linux/debugfs.h') diff --git a/backport/backport-include/linux/debugfs.h b/backport/backport-include/linux/debugfs.h index 651a55b9..11670388 100644 --- a/backport/backport-include/linux/debugfs.h +++ b/backport/backport-include/linux/debugfs.h @@ -5,7 +5,7 @@ #include #include -#if LINUX_VERSION_CODE < KERNEL_VERSION(3,19,0) +#if LINUX_VERSION_IS_LESS(3,19,0) #define debugfs_create_devm_seqfile LINUX_BACKPORT(debugfs_create_devm_seqfile) #if defined(CONFIG_DEBUG_FS) struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name, @@ -22,9 +22,9 @@ static inline struct dentry *debugfs_create_devm_seqfile(struct device *dev, return ERR_PTR(-ENODEV); } #endif /* CONFIG_DEBUG_FS */ -#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(3,19,0) */ +#endif /* LINUX_VERSION_IS_LESS(3,19,0) */ -#if LINUX_VERSION_CODE < KERNEL_VERSION(4,4,0) +#if LINUX_VERSION_IS_LESS(4,4,0) #define debugfs_create_bool LINUX_BACKPORT(debugfs_create_bool) #ifdef CONFIG_DEBUG_FS struct dentry *debugfs_create_bool(const char *name, umode_t mode, @@ -37,7 +37,7 @@ debugfs_create_bool(const char *name, umode_t mode, return ERR_PTR(-ENODEV); } #endif -#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(4,4,0) */ +#endif /* LINUX_VERSION_IS_LESS(4,4,0) */ #if LINUX_VERSION_IS_LESS(4,9,0) && \ !LINUX_VERSION_IN_RANGE(4,8,4, 4,9,0) && \ -- cgit v1.2.3