From c80df2f000d0b735e9040414a87d53a41d5eb101 Mon Sep 17 00:00:00 2001 From: Jonas Karlman Date: Mon, 19 Sep 2016 21:52:29 +0200 Subject: [PATCH] RTL8812AU: update gcc-5 patch --- .../patches/RTL8812AU-03-gcc-5.patch | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/packages/linux-drivers/RTL8812AU/patches/RTL8812AU-03-gcc-5.patch b/packages/linux-drivers/RTL8812AU/patches/RTL8812AU-03-gcc-5.patch index 95466b1b1f..ed84e0226c 100644 --- a/packages/linux-drivers/RTL8812AU/patches/RTL8812AU-03-gcc-5.patch +++ b/packages/linux-drivers/RTL8812AU/patches/RTL8812AU-03-gcc-5.patch @@ -1,7 +1,7 @@ -diff -Naur RTL8812AU-3f015f0/include/ieee80211.h RTL8812AU-3f015f0.patch/include/ieee80211.h ---- RTL8812AU-3f015f0/include/ieee80211.h 2015-07-14 21:45:26.000000000 +0200 -+++ RTL8812AU-3f015f0.patch/include/ieee80211.h 2015-11-03 14:12:38.570076503 +0100 -@@ -1286,12 +1286,12 @@ +diff -Naur a/include/ieee80211.h b/include/ieee80211.h +--- a/include/ieee80211.h ++++ b/include/ieee80211.h +@@ -1388,18 +1388,18 @@ (((Addr[2]) & 0xff) == 0xff) && (((Addr[3]) & 0xff) == 0xff) && (((Addr[4]) & 0xff) == 0xff) && \ (((Addr[5]) & 0xff) == 0xff)) #else @@ -14,5 +14,12 @@ diff -Naur RTL8812AU-3f015f0/include/ieee80211.h RTL8812AU-3f015f0.patch/include -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)); + 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));