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/netdev_features.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backport/backport-include/linux/netdev_features.h') diff --git a/backport/backport-include/linux/netdev_features.h b/backport/backport-include/linux/netdev_features.h index 3ca13e24..09568ce4 100644 --- a/backport/backport-include/linux/netdev_features.h +++ b/backport/backport-include/linux/netdev_features.h @@ -3,7 +3,7 @@ #include -#if LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0) +#if LINUX_VERSION_IS_LESS(3,3,0) #include #include @@ -20,7 +20,7 @@ typedef u32 netdev_features_t; #else #include_next -#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0) +#if LINUX_VERSION_IS_LESS(3,10,0) /* See commit f646968f8f on next-20130423 */ #define NETIF_F_HW_VLAN_CTAG_TX_BIT NETIF_F_HW_VLAN_TX_BIT #define NETIF_F_HW_VLAN_CTAG_RX_BIT NETIF_F_HW_VLAN_RX_BIT @@ -31,7 +31,7 @@ typedef u32 netdev_features_t; #define NETIF_F_HW_VLAN_CTAG_TX NETIF_F_HW_VLAN_TX #endif -#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0) */ +#endif /* LINUX_VERSION_IS_LESS(3,3,0) */ #if !defined(NETIF_F_RXCSUM) #define NETIF_F_RXCSUM 0 -- cgit v1.2.3