* [PATCH] wifi: nxpwifi: fix return value check in change_vif_to_sta/ap
@ 2026-08-25 10:49 Jeff Chen
0 siblings, 0 replies; only message in thread
From: Jeff Chen @ 2026-08-25 10:49 UTC (permalink / raw)
To: linux-wireless; +Cc: error27, johannes, Jeff Chen, Dan Carpenter
nxpwifi_change_vif_to_sta() and nxpwifi_change_vif_to_ap() both call
nxpwifi_set_bss_mode() without storing the return value, then check
'if (ret)' which tests the stale value from the previous call. The
'if (ret) goto done' is therefore dead code, and errors from
nxpwifi_set_bss_mode() are silently ignored.
Fix this by assigning the return value to ret, so the existing error
path works correctly.
Fixes: 73b01e57ed3e ("wifi: nxp: add nxpwifi driver for IW61x")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/linux-wireless/anwqp-LuExbRshYu@stanley.mountain/
Assisted-by: Claude:claude-opus-4-8
Signed-off-by: Jeff Chen <jeff.chen_1@nxp.com>
---
drivers/net/wireless/nxp/nxpwifi/cfg80211.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/net/wireless/nxp/nxpwifi/cfg80211.c b/drivers/net/wireless/nxp/nxpwifi/cfg80211.c
index 5cc8cdf594d3..ee022fa40990 100644
--- a/drivers/net/wireless/nxp/nxpwifi/cfg80211.c
+++ b/drivers/net/wireless/nxp/nxpwifi/cfg80211.c
@@ -844,9 +844,7 @@ nxpwifi_change_vif_to_sta(struct net_device *dev,
update_vif_type_counter(adapter, type, 1);
dev->ieee80211_ptr->iftype = type;
- if (nxpwifi_set_bss_mode(priv))
- return -1;
-
+ ret = nxpwifi_set_bss_mode(priv);
if (ret)
goto done;
@@ -888,9 +886,7 @@ nxpwifi_change_vif_to_ap(struct net_device *dev,
update_vif_type_counter(adapter, type, 1);
dev->ieee80211_ptr->iftype = type;
- if (nxpwifi_set_bss_mode(priv))
- return -1;
-
+ ret = nxpwifi_set_bss_mode(priv);
if (ret)
goto done;
base-commit: ca800a9302764c445de0da0e84d2252400a770ee
--
2.34.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-25 10:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-25 10:49 [PATCH] wifi: nxpwifi: fix return value check in change_vif_to_sta/ap Jeff Chen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox