]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
wifi: rtw89: wow: add net-detect support for 8852c
authorChin-Yen Lee <timlee@realtek.com>
Mon, 5 Aug 2024 09:00:28 +0000 (17:00 +0800)
committerPing-Ke Shih <pkshih@realtek.com>
Fri, 9 Aug 2024 00:42:32 +0000 (08:42 +0800)
Enable net-detect in WoWLan stub of 8852c, and declare
net-detect support up to 8 SSIDs.

Signed-off-by: Chin-Yen Lee <timlee@realtek.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20240805090028.27768-6-pkshih@realtek.com
drivers/net/wireless/realtek/rtw89/rtw8852c.c

index 244f50e725499bbbff241b30ee15ead10501b8b9..dc1da9ff055c4082a7c781e6b0442deda9075eac 100644 (file)
@@ -2850,10 +2850,12 @@ static const struct rtw89_chanctx_listener rtw8852c_chanctx_listener = {
 
 #ifdef CONFIG_PM
 static const struct wiphy_wowlan_support rtw_wowlan_stub_8852c = {
-       .flags = WIPHY_WOWLAN_MAGIC_PKT | WIPHY_WOWLAN_DISCONNECT,
+       .flags = WIPHY_WOWLAN_MAGIC_PKT | WIPHY_WOWLAN_DISCONNECT |
+                WIPHY_WOWLAN_NET_DETECT,
        .n_patterns = RTW89_MAX_PATTERN_NUM,
        .pattern_max_len = RTW89_MAX_PATTERN_SIZE,
        .pattern_min_len = 1,
+       .max_nd_match_sets = RTW89_SCANOFLD_MAX_SSID,
 };
 #endif