Commit 583d1833 authored by Dan Carpenter's avatar Dan Carpenter Committed by Luca Coelho
Browse files

iwlwifi: mvm: Fix an error code in iwl_mvm_up()



Return -ENODEV instead of success on this error path.

Fixes: dd36a507 ("iwlwifi: mvm: look for the first supported channel when add/remove phy ctxt")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/20210816183930.GA2068@kili


Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent c305c94b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1709,8 +1709,10 @@ int iwl_mvm_up(struct iwl_mvm *mvm)
	while (!sband && i < NUM_NL80211_BANDS)
		sband = mvm->hw->wiphy->bands[i++];

	if (WARN_ON_ONCE(!sband))
	if (WARN_ON_ONCE(!sband)) {
		ret = -ENODEV;
		goto error;
	}

	chan = &sband->channels[0];