Commit 96850912 authored by Andrei Otcheretianski's avatar Andrei Otcheretianski Committed by Johannes Berg

wifi: iwlwifi: replace ENOTSUPP with EOPNOTSUPP

ENOTSUPP isn't a standard error code, don't use it. Replace with
EOPNOTSUPP instead.
Signed-off-by: default avatarAndrei Otcheretianski <andrei.otcheretianski@intel.com>
Reviewed-by: default avatarGregory Greenman <gregory.greenman@intel.com>
Signed-off-by: default avatarMiri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://msgid.link/20231219215605.a69f4347b5f8.I88429d5de8251287ec0b58ff26a588465b9049a5@changeidSigned-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 6f3afc6c
...@@ -1316,7 +1316,7 @@ iwl_trans_get_rxq_dma_data(struct iwl_trans *trans, int queue, ...@@ -1316,7 +1316,7 @@ iwl_trans_get_rxq_dma_data(struct iwl_trans *trans, int queue,
struct iwl_trans_rxq_dma_data *data) struct iwl_trans_rxq_dma_data *data)
{ {
if (WARN_ON_ONCE(!trans->ops->rxq_dma_data)) if (WARN_ON_ONCE(!trans->ops->rxq_dma_data))
return -ENOTSUPP; return -EOPNOTSUPP;
return trans->ops->rxq_dma_data(trans, queue, data); return trans->ops->rxq_dma_data(trans, queue, data);
} }
...@@ -1338,7 +1338,7 @@ iwl_trans_txq_alloc(struct iwl_trans *trans, ...@@ -1338,7 +1338,7 @@ iwl_trans_txq_alloc(struct iwl_trans *trans,
might_sleep(); might_sleep();
if (WARN_ON_ONCE(!trans->ops->txq_alloc)) if (WARN_ON_ONCE(!trans->ops->txq_alloc))
return -ENOTSUPP; return -EOPNOTSUPP;
if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) { if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state); 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, ...@@ -1404,7 +1404,7 @@ static inline int iwl_trans_wait_tx_queues_empty(struct iwl_trans *trans,
u32 txqs) u32 txqs)
{ {
if (WARN_ON_ONCE(!trans->ops->wait_tx_queues_empty)) if (WARN_ON_ONCE(!trans->ops->wait_tx_queues_empty))
return -ENOTSUPP; return -EOPNOTSUPP;
/* No need to wait if the firmware is not alive */ /* No need to wait if the firmware is not alive */
if (trans->state != IWL_TRANS_FW_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, ...@@ -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) static inline int iwl_trans_wait_txq_empty(struct iwl_trans *trans, int queue)
{ {
if (WARN_ON_ONCE(!trans->ops->wait_txq_empty)) if (WARN_ON_ONCE(!trans->ops->wait_txq_empty))
return -ENOTSUPP; return -EOPNOTSUPP;
if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) { if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state); IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
......
...@@ -1521,7 +1521,7 @@ static ssize_t iwl_dbgfs_inject_packet_write(struct iwl_mvm *mvm, ...@@ -1521,7 +1521,7 @@ static ssize_t iwl_dbgfs_inject_packet_write(struct iwl_mvm *mvm,
/* supporting only MQ RX */ /* supporting only MQ RX */
if (!mvm->trans->trans_cfg->mq_rx_supported) if (!mvm->trans->trans_cfg->mq_rx_supported)
return -ENOTSUPP; return -EOPNOTSUPP;
rxb._page = alloc_pages(GFP_ATOMIC, 0); rxb._page = alloc_pages(GFP_ATOMIC, 0);
if (!rxb._page) if (!rxb._page)
......
...@@ -39,7 +39,7 @@ static int iwl_mvm_ftm_responder_set_bw_v1(struct cfg80211_chan_def *chandef, ...@@ -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); *ctrl_ch_position = iwl_mvm_get_ctrl_pos(chandef);
break; break;
default: default:
return -ENOTSUPP; return -EOPNOTSUPP;
} }
return 0; return 0;
...@@ -77,7 +77,7 @@ static int iwl_mvm_ftm_responder_set_bw_v2(struct cfg80211_chan_def *chandef, ...@@ -77,7 +77,7 @@ static int iwl_mvm_ftm_responder_set_bw_v2(struct cfg80211_chan_def *chandef,
} }
fallthrough; fallthrough;
default: default:
return -ENOTSUPP; return -EOPNOTSUPP;
} }
return 0; return 0;
...@@ -291,7 +291,7 @@ iwl_mvm_ftm_responder_dyn_cfg_cmd(struct iwl_mvm *mvm, ...@@ -291,7 +291,7 @@ iwl_mvm_ftm_responder_dyn_cfg_cmd(struct iwl_mvm *mvm,
default: default:
IWL_ERR(mvm, "Unsupported DYN_CONFIG_CMD version %u\n", IWL_ERR(mvm, "Unsupported DYN_CONFIG_CMD version %u\n",
cmd_ver); cmd_ver);
ret = -ENOTSUPP; ret = -EOPNOTSUPP;
} }
return ret; return ret;
...@@ -333,7 +333,7 @@ int iwl_mvm_ftm_respoder_add_pasn_sta(struct iwl_mvm *mvm, ...@@ -333,7 +333,7 @@ int iwl_mvm_ftm_respoder_add_pasn_sta(struct iwl_mvm *mvm,
if (cmd_ver < 3) { if (cmd_ver < 3) {
IWL_ERR(mvm, "Adding PASN station not supported by FW\n"); IWL_ERR(mvm, "Adding PASN station not supported by FW\n");
return -ENOTSUPP; return -EOPNOTSUPP;
} }
if ((!hltk || !hltk_len) && (!tk || !tk_len)) { if ((!hltk || !hltk_len) && (!tk || !tk_len)) {
......
...@@ -298,7 +298,7 @@ int iwl_mvm_op_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant) ...@@ -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 */ /* This has been tested on those devices only */
if (mvm->trans->trans_cfg->device_family != IWL_DEVICE_FAMILY_9000 && if (mvm->trans->trans_cfg->device_family != IWL_DEVICE_FAMILY_9000 &&
mvm->trans->trans_cfg->device_family != IWL_DEVICE_FAMILY_22000) mvm->trans->trans_cfg->device_family != IWL_DEVICE_FAMILY_22000)
return -ENOTSUPP; return -EOPNOTSUPP;
if (!mvm->nvm_data) if (!mvm->nvm_data)
return -EBUSY; return -EBUSY;
......
...@@ -2550,7 +2550,7 @@ int iwl_mvm_add_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif) ...@@ -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 && if (WARN_ON(vif->type != NL80211_IFTYPE_AP &&
vif->type != NL80211_IFTYPE_ADHOC)) vif->type != NL80211_IFTYPE_ADHOC))
return -ENOTSUPP; return -EOPNOTSUPP;
/* /*
* In IBSS, ieee80211_check_queues() sets the cab_queue to be * 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, ...@@ -3234,7 +3234,7 @@ int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
* should be updated as well. * should be updated as well.
*/ */
if (buf_size < IWL_FRAME_LIMIT) if (buf_size < IWL_FRAME_LIMIT)
return -ENOTSUPP; return -EOPNOTSUPP;
ret = iwl_mvm_sta_tx_agg(mvm, sta, tid, queue, true); ret = iwl_mvm_sta_tx_agg(mvm, sta, tid, queue, true);
if (ret) if (ret)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment