mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 01:22:25 +00:00
1. porting MorseMicro HaLow driver to support HaLow on EAP112 2. Only support FCC regulation because of hardware limitation 3. Add /etc/init.d/halow-gpio-reset to initialize HaLow chip in early stage 4. Add /etc/uci-defaults/aaa-fix-phy0-to-morse to correct the default uci for HaLow radio. Signed-off-by: Ian Chen <ian77_chen@accton.com>
14 lines
335 B
Diff
14 lines
335 B
Diff
--- a/net/mac80211/rx.c
|
|
+++ b/net/mac80211/rx.c
|
|
@@ -4193,8 +4196,10 @@
|
|
case NL80211_IFTYPE_STATION:
|
|
if (!bssid && !sdata->u.mgd.use_4addr)
|
|
return false;
|
|
+#if 0
|
|
if (ieee80211_is_robust_mgmt_frame(skb) && !rx->sta)
|
|
return false;
|
|
+#endif
|
|
if (multicast)
|
|
return true;
|
|
return ether_addr_equal(sdata->vif.addr, hdr->addr1);
|