This adds suport for kernel 3.2. Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx> --- include/linux/compat-3.2.h | 17 ----------------- include/linux/compat-3.3.h | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/include/linux/compat-3.2.h b/include/linux/compat-3.2.h index ceaaecc..db0f648 100644 --- a/include/linux/compat-3.2.h +++ b/include/linux/compat-3.2.h @@ -8,23 +8,6 @@ #include <linux/skbuff.h> #include <linux/dma-mapping.h> -/* - * This is not part of The 2.6.37 kernel yet but we - * we use it to optimize the backport code we - * need to implement. Instead of using ifdefs - * to check what version of the check we use - * we just replace all checks on current code - * with this. I'll submit this upstream too, that - * way all we'd have to do is to implement this - * for older kernels, then we would not have to - * edit the upstrema code for backport efforts. - */ -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)) -#define br_port_exists(dev) (dev->priv_flags & IFF_BRIDGE_PORT) -#else -#define br_port_exists(dev) (dev->br_port) -#endif - #define PMSG_IS_AUTO(msg) (((msg).event & PM_EVENT_AUTO) != 0) /** diff --git a/include/linux/compat-3.3.h b/include/linux/compat-3.3.h index 2e1e6d3..4e96ddc 100644 --- a/include/linux/compat-3.3.h +++ b/include/linux/compat-3.3.h @@ -8,6 +8,22 @@ /* include to override NL80211_FEATURE_SK_TX_STATUS */ #include <linux/nl80211.h> +/* + * This is not part of The 2.6.37 kernel yet but we + * we use it to optimize the backport code we + * need to implement. Instead of using ifdefs + * to check what version of the check we use + * we just replace all checks on current code + * with this. I'll submit this upstream too, that + * way all we'd have to do is to implement this + * for older kernels, then we would not have to + * edit the upstrema code for backport efforts. + */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)) +#define br_port_exists(dev) (dev->priv_flags & IFF_BRIDGE_PORT) +#else +#define br_port_exists(dev) (dev->br_port) +#endif static inline void skb_complete_wifi_ack(struct sk_buff *skb, bool acked) { -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html