diff options
author | Johannes Berg <johannes.berg@intel.com> | 2017-02-07 23:04:11 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2017-02-09 14:52:26 +0100 |
commit | e13e44d9a81da4bf77d9869db5b4764fc0811d9f (patch) | |
tree | c610ae2b0f634df75fe88f65a047e5c741c9b0af /backport/compat/compat-3.4.c | |
parent | 46939c43903da6b202c95a0fcb24acce55fd63c0 (diff) |
backports: always use new version compare macros
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'backport/compat/compat-3.4.c')
-rw-r--r-- | backport/compat/compat-3.4.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backport/compat/compat-3.4.c b/backport/compat/compat-3.4.c index bc090b78..52753725 100644 --- a/backport/compat/compat-3.4.c +++ b/backport/compat/compat-3.4.c @@ -14,13 +14,13 @@ #include <linux/compat.h> #include <asm/uaccess.h> -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0)) +#if LINUX_VERSION_IS_GEQ(3,2,0) #include <linux/regmap.h> #include <linux/i2c.h> #include <linux/spi/spi.h> -#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0)) */ +#endif /* LINUX_VERSION_IS_GEQ(3,2,0) */ -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0)) +#if LINUX_VERSION_IS_GEQ(3,2,0) #if defined(CONFIG_REGMAP) static void devm_regmap_release(struct device *dev, void *res) @@ -172,7 +172,7 @@ EXPORT_SYMBOL_GPL(devm_regmap_init_i2c); #endif /* defined(CONFIG_REGMAP_I2C) */ #endif /* defined(CONFIG_REGMAP) */ -#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0)) */ +#endif /* LINUX_VERSION_IS_GEQ(3,2,0) */ int simple_open(struct inode *inode, struct file *file) { |