mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-30 22:26:42 +00:00
Merge pull request #1973 from CGarces/update_RTL8192EU
RTL8192EU: Update to new branch
This commit is contained in:
commit
09a194213b
@ -17,8 +17,8 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PKG_NAME="RTL8192EU"
|
PKG_NAME="RTL8192EU"
|
||||||
PKG_VERSION="addef14"
|
PKG_VERSION="192bad4"
|
||||||
PKG_SHA256="b16e6bf202ee4b72540520d1fddc4efde7e6f9a2cca4754d0f924a08d258ba9b"
|
PKG_SHA256="35c7783cc1d10d4cee887b857a0372b808677c6aada8a02f78df906323acbd2f"
|
||||||
PKG_ARCH="any"
|
PKG_ARCH="any"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="https://github.com/Mange/rtl8192eu-linux-driver"
|
PKG_SITE="https://github.com/Mange/rtl8192eu-linux-driver"
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
diff -Naur a/include/ieee80211.h b/include/ieee80211.h
|
|
||||||
--- a/include/ieee80211.h
|
|
||||||
+++ b/include/ieee80211.h
|
|
||||||
@@ -1314,18 +1314,18 @@
|
|
||||||
(((Addr[2]) & 0xff) == 0xff) && (((Addr[3]) & 0xff) == 0xff) && (((Addr[4]) & 0xff) == 0xff) && \
|
|
||||||
(((Addr[5]) & 0xff) == 0xff))
|
|
||||||
#else
|
|
||||||
-extern __inline int is_multicast_mac_addr(const u8 *addr)
|
|
||||||
+static __inline int is_multicast_mac_addr(const u8 *addr)
|
|
||||||
{
|
|
||||||
return ((addr[0] != 0xff) && (0x01 & addr[0]));
|
|
||||||
}
|
|
||||||
|
|
||||||
-extern __inline int is_broadcast_mac_addr(const u8 *addr)
|
|
||||||
+static __inline int is_broadcast_mac_addr(const u8 *addr)
|
|
||||||
{
|
|
||||||
return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) && \
|
|
||||||
(addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff));
|
|
||||||
}
|
|
||||||
|
|
||||||
-extern __inline int is_zero_mac_addr(const u8 *addr)
|
|
||||||
+static __inline int is_zero_mac_addr(const u8 *addr)
|
|
||||||
{
|
|
||||||
return ((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && \
|
|
||||||
(addr[3] == 0x00) && (addr[4] == 0x00) && (addr[5] == 0x00));
|
|
Loading…
x
Reference in New Issue
Block a user