From 1e4666329703d2346ed87fa03c5094a29d7ffa6d Mon Sep 17 00:00:00 2001 From: MicroFish <2609948707@qq.com> Date: Tue, 10 Feb 2026 19:38:04 +0800 Subject: [PATCH 1/2] Comment out .SECONDARY directive in Makefile Comment out the .SECONDARY directive in the Makefile. --- drivers/gpu/drm/img/img-rogue/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/img/img-rogue/Makefile b/drivers/gpu/drm/img/img-rogue/Makefile index faf588e85b57..2ff6ccbb0aa3 100644 --- a/drivers/gpu/drm/img/img-rogue/Makefile +++ b/drivers/gpu/drm/img/img-rogue/Makefile @@ -73,7 +73,7 @@ WINDOW_SYSTEM=nulldrmws #include $(OUT)/config_kernel.mk include $(src)/config_kernel.mk -.SECONDARY: +# .SECONDARY: define symlink-source-file @if [ ! -e $(dir $@) ]; then mkdir -p $(dir $@); fi From 0a2ac7e15d07fddd287728cddc399b00fdb608cc Mon Sep 17 00:00:00 2001 From: MicroFish <2609948707@qq.com> Date: Tue, 10 Feb 2026 19:44:15 +0800 Subject: [PATCH 2/2] Update ecrnx_main.c --- drivers/net/wireless/eswin/fullmac/ecrnx_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/eswin/fullmac/ecrnx_main.c b/drivers/net/wireless/eswin/fullmac/ecrnx_main.c index 80d1dc14e496..8620ffa0044c 100644 --- a/drivers/net/wireless/eswin/fullmac/ecrnx_main.c +++ b/drivers/net/wireless/eswin/fullmac/ecrnx_main.c @@ -1343,7 +1343,7 @@ static int ecrnx_cfg80211_change_iface(struct wiphy *wiphy, { if((ECRNX_VIF_TYPE(vif) == NL80211_IFTYPE_AP) || (ECRNX_VIF_TYPE(vif) == NL80211_IFTYPE_P2P_GO)) { - ecrnx_cfg80211_stop_ap(wiphy, dev, NULL); + ecrnx_cfg80211_stop_ap(wiphy, dev, 0); } else if((ECRNX_VIF_TYPE(vif) == NL80211_IFTYPE_STATION) || (ECRNX_VIF_TYPE(vif) == NL80211_IFTYPE_P2P_CLIENT)) { @@ -1708,7 +1708,7 @@ static int ecrnx_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev, key_params.key_len = sme->key_len; key_params.seq_len = 0; key_params.cipher = sme->crypto.cipher_group; - ecrnx_cfg80211_add_key(wiphy, dev, NULL, sme->key_idx, false, NULL, &key_params); + ecrnx_cfg80211_add_key(wiphy, dev, 0, sme->key_idx, false, NULL, &key_params); } #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 17, 0) else if ((sme->auth_type == NL80211_AUTHTYPE_SAE) &&