rtl8188eu: Fix build for kernel 5.15

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2021-10-18 16:13:42 -05:00
parent 99a65acdfc
commit a1dbe3155c

View file

@ -4,9 +4,12 @@
#define _RTW_BR_EXT_C_
#ifdef __KERNEL__
#include <linux/version.h>
#include <linux/if_arp.h>
#include <net/ip.h>
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 15, 0)
#include <net/ipx.h>
#endif
#include <linux/atalk.h>
#include <linux/udp.h>
#include <linux/if_pppox.h>
@ -866,7 +869,7 @@ int nat25_db_handle(_adapter *priv, struct sk_buff *skb, int method)
return -1;
}
}
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 15, 0)
/*---------------------------------------------------*/
/* Handle IPX and Apple Talk frame */
/*---------------------------------------------------*/
@ -994,7 +997,6 @@ int nat25_db_handle(_adapter *priv, struct sk_buff *skb, int method)
return -1;
}
}
/* AARP */
else if (ea != NULL) {
/* Sanity check fields. */
@ -1354,6 +1356,7 @@ int nat25_db_handle(_adapter *priv, struct sk_buff *skb, int method)
}
}
#endif /* CL_IPV6_PASS */
#endif
return -1;
}