wifi: iwlwifi: replace ENOTSUPP with EOPNOTSUPP
authorAndrei Otcheretianski <andrei.otcheretianski@intel.com>
Tue, 19 Dec 2023 19:59:02 +0000 (21:59 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Thu, 21 Dec 2023 19:35:17 +0000 (20:35 +0100)
ENOTSUPP isn't a standard error code, don't use it. Replace with
EOPNOTSUPP instead.

Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
Reviewed-by: Gregory Greenman <gregory.greenman@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://msgid.link/20231219215605.a69f4347b5f8.I88429d5de8251287ec0b58ff26a588465b9049a5@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/iwl-trans.h
drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c
drivers/net/wireless/intel/iwlwifi/mvm/ftm-responder.c
drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
drivers/net/wireless/intel/iwlwifi/mvm/sta.c

index ef7dc0a7b56cb9fbc2ddb32b089818b4a9cae80d..5789a87359767b57279dabcdfbc8d8b77a588569 100644 (file)
@@ -1316,7 +1316,7 @@ iwl_trans_get_rxq_dma_data(struct iwl_trans *trans, int queue,
                           struct iwl_trans_rxq_dma_data *data)
 {
        if (WARN_ON_ONCE(!trans->ops->rxq_dma_data))
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
 
        return trans->ops->rxq_dma_data(trans, queue, data);
 }
@@ -1338,7 +1338,7 @@ iwl_trans_txq_alloc(struct iwl_trans *trans,
        might_sleep();
 
        if (WARN_ON_ONCE(!trans->ops->txq_alloc))
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
 
        if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
                IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
@@ -1404,7 +1404,7 @@ static inline int iwl_trans_wait_tx_queues_empty(struct iwl_trans *trans,
                                                 u32 txqs)
 {
        if (WARN_ON_ONCE(!trans->ops->wait_tx_queues_empty))
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
 
        /* No need to wait if the firmware is not alive */
        if (trans->state != IWL_TRANS_FW_ALIVE) {
@@ -1418,7 +1418,7 @@ static inline int iwl_trans_wait_tx_queues_empty(struct iwl_trans *trans,
 static inline int iwl_trans_wait_txq_empty(struct iwl_trans *trans, int queue)
 {
        if (WARN_ON_ONCE(!trans->ops->wait_txq_empty))
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
 
        if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
                IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
index 16a104de8371751eb6c7fb74c94c2e7029979eb0..edc8204f7c0e1ecfa09b5cf2612b7e665aaae575 100644 (file)
@@ -1521,7 +1521,7 @@ static ssize_t iwl_dbgfs_inject_packet_write(struct iwl_mvm *mvm,
 
        /* supporting only MQ RX */
        if (!mvm->trans->trans_cfg->mq_rx_supported)
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
 
        rxb._page = alloc_pages(GFP_ATOMIC, 0);
        if (!rxb._page)
index 10b9219b3bfd3568946577ef388bddc3c44c7c41..8f10590f9cddfd716a86c9d6e0afa4bb0368fd71 100644 (file)
@@ -39,7 +39,7 @@ static int iwl_mvm_ftm_responder_set_bw_v1(struct cfg80211_chan_def *chandef,
                *ctrl_ch_position = iwl_mvm_get_ctrl_pos(chandef);
                break;
        default:
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
        }
 
        return 0;
@@ -77,7 +77,7 @@ static int iwl_mvm_ftm_responder_set_bw_v2(struct cfg80211_chan_def *chandef,
                }
                fallthrough;
        default:
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
        }
 
        return 0;
@@ -291,7 +291,7 @@ iwl_mvm_ftm_responder_dyn_cfg_cmd(struct iwl_mvm *mvm,
        default:
                IWL_ERR(mvm, "Unsupported DYN_CONFIG_CMD version %u\n",
                        cmd_ver);
-               ret = -ENOTSUPP;
+               ret = -EOPNOTSUPP;
        }
 
        return ret;
@@ -333,7 +333,7 @@ int iwl_mvm_ftm_respoder_add_pasn_sta(struct iwl_mvm *mvm,
 
        if (cmd_ver < 3) {
                IWL_ERR(mvm, "Adding PASN station not supported by FW\n");
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
        }
 
        if ((!hltk || !hltk_len) && (!tk || !tk_len)) {
index 5276df717ca117fce68bbc99805bf1dc5733058e..7f13dff04b265caf265f24662d7609f60289120d 100644 (file)
@@ -298,7 +298,7 @@ int iwl_mvm_op_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
        /* This has been tested on those devices only */
        if (mvm->trans->trans_cfg->device_family != IWL_DEVICE_FAMILY_9000 &&
            mvm->trans->trans_cfg->device_family != IWL_DEVICE_FAMILY_22000)
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
 
        if (!mvm->nvm_data)
                return -EBUSY;
index efe3e111ea0a783add43268d81b69ef6166165c0..2a3ca97859749749fff954e097a9d62ae86f5d24 100644 (file)
@@ -2550,7 +2550,7 @@ int iwl_mvm_add_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
 
        if (WARN_ON(vif->type != NL80211_IFTYPE_AP &&
                    vif->type != NL80211_IFTYPE_ADHOC))
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
 
        /*
         * In IBSS, ieee80211_check_queues() sets the cab_queue to be
@@ -3234,7 +3234,7 @@ int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
                 * should be updated as well.
                 */
                if (buf_size < IWL_FRAME_LIMIT)
-                       return -ENOTSUPP;
+                       return -EOPNOTSUPP;
 
                ret = iwl_mvm_sta_tx_agg(mvm, sta, tid, queue, true);
                if (ret)