Skip to content

Commit abbd557

Browse files
authored
Merge pull request #2 from REVrobotics/control-hub-os-1-1-6
Control Hub OS 1.1.6 Changes
2 parents 8972495 + cd76a59 commit abbd557

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ NAME = TOSSUG Baby Fish
1010
# Comments in this file are targeted only to the developer, do not
1111
# expect to learn how to build the kernel reading this file.
1212

13-
SUBLEVEL = 104
13+
SUBLEVEL = 245
1414

1515
# Do not:
1616
# o use make's built-in rules and variables

drivers/net/wireless/rockchip_wlan/rtl8821cu/include/drv_conf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ defined(CONFIG_RTL8723B) || defined(CONFIG_RTL8703B) || defined(CONFIG_RTL8723D)
434434
#endif/*CONFIG_HWMPCAP_GEN2*/
435435
#endif/*(CONFIG_IFACE_NUMBER > 2)*/
436436

437-
#define MACID_NUM_SW_LIMIT 32
437+
#define MACID_NUM_SW_LIMIT 190
438438
#define SEC_CAM_ENT_NUM_SW_LIMIT 32
439439

440440
#if defined(CONFIG_RTL8812A) || defined(CONFIG_RTL8821A) || defined(CONFIG_RTL8814A)

drivers/net/wireless/rtlwifi/ps.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,8 @@ static void rtl_p2p_noa_ie(struct ieee80211_hw *hw, void *data,
698698
return;
699699
} else {
700700
noa_num = (noa_len - 2) / 13;
701+
if (noa_num > P2P_MAX_NOA_NUM)
702+
noa_num = P2P_MAX_NOA_NUM;
701703
}
702704
noa_index = ie[3];
703705
if (rtlpriv->psc.p2p_ps_info.p2p_ps_mode ==
@@ -792,6 +794,8 @@ static void rtl_p2p_action_ie(struct ieee80211_hw *hw, void *data,
792794
return;
793795
} else {
794796
noa_num = (noa_len - 2) / 13;
797+
if (noa_num > P2P_MAX_NOA_NUM)
798+
noa_num = P2P_MAX_NOA_NUM;
795799
}
796800
noa_index = ie[3];
797801
if (rtlpriv->psc.p2p_ps_info.p2p_ps_mode ==

0 commit comments

Comments
 (0)