mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-27 04:36:40 +00:00
RTL8812AU: add patch to fix multiple function definitions
This commit is contained in:
parent
5d65364754
commit
7a434a2c91
@ -0,0 +1,25 @@
|
|||||||
|
diff -Naur a/include/ieee80211.h b/include/ieee80211.h
|
||||||
|
--- a/include/ieee80211.h 2016-10-20 12:20:19.000000000 -0700
|
||||||
|
+++ b/include/ieee80211.h 2016-11-15 17:00:32.239848199 -0800
|
||||||
|
@@ -1388,18 +1388,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