summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuoHan Zhao <zhaoguohan@kylinos.cn>2026-07-15 14:08:13 +0800
committerPing-Ke Shih <pkshih@realtek.com>2026-07-17 11:41:21 +0800
commit73aecc221e7df482b2dcf1a643e840ffce1b83c3 (patch)
treef313a0ce4677e6f811d6fe0144aa92884fd2aba8
parent3c15399ef64e89270b8c4cddb857e2f8886cb140 (diff)
downloadlinux-next-73aecc221e7df482b2dcf1a643e840ffce1b83c3.tar.gz
linux-next-73aecc221e7df482b2dcf1a643e840ffce1b83c3.zip
wifi: rtw89: wow: fix unsupported cipher debug messages
Correct two WoWLAN debug messages to say "unsupported cipher". Signed-off-by: GuoHan Zhao <zhaoguohan@kylinos.cn> Acked-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Link: https://patch.msgid.link/20260715060813.476245-1-zhaoguohan@kylinos.cn
-rw-r--r--drivers/net/wireless/realtek/rtw89/wow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/realtek/rtw89/wow.c b/drivers/net/wireless/realtek/rtw89/wow.c
index a7539f91264d..d6bf5cd8be3b 100644
--- a/drivers/net/wireless/realtek/rtw89/wow.c
+++ b/drivers/net/wireless/realtek/rtw89/wow.c
@@ -358,7 +358,7 @@ static void rtw89_wow_get_key_info_iter(struct ieee80211_hw *hw,
key_info->gtk_keyidx = key->keyidx;
break;
default:
- rtw89_debug(rtwdev, RTW89_DBG_WOW, "unsupport cipher %x\n",
+ rtw89_debug(rtwdev, RTW89_DBG_WOW, "unsupported cipher %x\n",
key->cipher);
goto err;
}
@@ -443,7 +443,7 @@ static void rtw89_wow_set_key_info_iter(struct ieee80211_hw *hw,
case WLAN_CIPHER_SUITE_WEP104:
break;
default:
- rtw89_debug(rtwdev, RTW89_DBG_WOW, "unsupport cipher %x\n",
+ rtw89_debug(rtwdev, RTW89_DBG_WOW, "unsupported cipher %x\n",
key->cipher);
goto err;
}