mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 12:25:31 +00:00
mwifiex: fix checkpatch --strict warnings/errors Part 2
For files cfg80211.c, cfp.c, and cmdevt.c Signed-off-by: Yogesh Ashok Powar <yogeshp@marvell.com> Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
842668417c
commit
aea0701e22
@ -127,8 +127,7 @@ mwifiex_cfg80211_set_power_mgmt(struct wiphy *wiphy,
|
||||
|
||||
if (timeout)
|
||||
wiphy_dbg(wiphy,
|
||||
"info: ignoring the timeout value"
|
||||
" for IEEE power save\n");
|
||||
"info: ignore timeout value for IEEE Power Save\n");
|
||||
|
||||
ps_mode = enabled;
|
||||
|
||||
@ -350,9 +349,8 @@ mwifiex_set_rf_channel(struct mwifiex_private *priv,
|
||||
mwifiex_send_domain_info_cmd_fw(wiphy);
|
||||
}
|
||||
|
||||
wiphy_dbg(wiphy, "info: setting band %d, channel offset %d and "
|
||||
"mode %d\n", config_bands, adapter->sec_chan_offset,
|
||||
priv->bss_mode);
|
||||
wiphy_dbg(wiphy, "info: setting band %d, chan offset %d, mode %d\n",
|
||||
config_bands, adapter->sec_chan_offset, priv->bss_mode);
|
||||
if (!chan)
|
||||
return 0;
|
||||
|
||||
@ -403,8 +401,8 @@ mwifiex_set_frag(struct mwifiex_private *priv, u32 frag_thr)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (frag_thr < MWIFIEX_FRAG_MIN_VALUE
|
||||
|| frag_thr > MWIFIEX_FRAG_MAX_VALUE)
|
||||
if (frag_thr < MWIFIEX_FRAG_MIN_VALUE ||
|
||||
frag_thr > MWIFIEX_FRAG_MAX_VALUE)
|
||||
return -EINVAL;
|
||||
|
||||
/* Send request to firmware */
|
||||
@ -746,8 +744,7 @@ static int mwifiex_cfg80211_set_bitrate_mask(struct wiphy *wiphy,
|
||||
adapter->channel_type = NL80211_CHAN_NO_HT;
|
||||
|
||||
wiphy_debug(wiphy, "info: device configured in 802.11%s%s mode\n",
|
||||
(mode & BAND_B) ? "b" : "",
|
||||
(mode & BAND_G) ? "g" : "");
|
||||
(mode & BAND_B) ? "b" : "", (mode & BAND_G) ? "g" : "");
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -802,8 +799,7 @@ static int mwifiex_cfg80211_inform_ibss_bss(struct mwifiex_private *priv)
|
||||
ie_buf[1] = bss_info.ssid.ssid_len;
|
||||
|
||||
memcpy(&ie_buf[sizeof(struct ieee_types_header)],
|
||||
&bss_info.ssid.ssid,
|
||||
bss_info.ssid.ssid_len);
|
||||
&bss_info.ssid.ssid, bss_info.ssid.ssid_len);
|
||||
ie_len = ie_buf[1] + sizeof(struct ieee_types_header);
|
||||
|
||||
band = mwifiex_band_to_radio_type(priv->curr_bss_params.band);
|
||||
@ -952,13 +948,14 @@ done:
|
||||
|
||||
if (!bss) {
|
||||
if (is_scanning_required) {
|
||||
dev_warn(priv->adapter->dev, "assoc: requested "
|
||||
"bss not found in scan results\n");
|
||||
dev_warn(priv->adapter->dev,
|
||||
"assoc: requested bss not found in scan results\n");
|
||||
break;
|
||||
}
|
||||
is_scanning_required = 1;
|
||||
} else {
|
||||
dev_dbg(priv->adapter->dev, "info: trying to associate to %s and bssid %pM\n",
|
||||
dev_dbg(priv->adapter->dev,
|
||||
"info: trying to associate to '%s' bssid %pM\n",
|
||||
(char *) req_ssid.ssid, bss->bssid);
|
||||
memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN);
|
||||
break;
|
||||
@ -1367,6 +1364,7 @@ int mwifiex_register_cfg80211(struct mwifiex_private *priv)
|
||||
int ret;
|
||||
void *wdev_priv;
|
||||
struct wireless_dev *wdev;
|
||||
struct ieee80211_sta_ht_cap *ht_info;
|
||||
|
||||
wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
|
||||
if (!wdev) {
|
||||
@ -1383,17 +1381,17 @@ int mwifiex_register_cfg80211(struct mwifiex_private *priv)
|
||||
}
|
||||
wdev->iftype = NL80211_IFTYPE_STATION;
|
||||
wdev->wiphy->max_scan_ssids = 10;
|
||||
wdev->wiphy->interface_modes =
|
||||
BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_ADHOC);
|
||||
wdev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
|
||||
BIT(NL80211_IFTYPE_ADHOC);
|
||||
|
||||
wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = &mwifiex_band_2ghz;
|
||||
mwifiex_setup_ht_caps(
|
||||
&wdev->wiphy->bands[IEEE80211_BAND_2GHZ]->ht_cap, priv);
|
||||
ht_info = &wdev->wiphy->bands[IEEE80211_BAND_2GHZ]->ht_cap;
|
||||
mwifiex_setup_ht_caps(ht_info, priv);
|
||||
|
||||
if (priv->adapter->config_bands & BAND_A) {
|
||||
wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = &mwifiex_band_5ghz;
|
||||
mwifiex_setup_ht_caps(
|
||||
&wdev->wiphy->bands[IEEE80211_BAND_5GHZ]->ht_cap, priv);
|
||||
ht_info = &wdev->wiphy->bands[IEEE80211_BAND_5GHZ]->ht_cap;
|
||||
mwifiex_setup_ht_caps(ht_info, priv);
|
||||
} else {
|
||||
wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = NULL;
|
||||
}
|
||||
|
@ -158,7 +158,8 @@ static int mwifiex_dnld_cmd_to_fw(struct mwifiex_private *priv,
|
||||
/* Set command sequence number */
|
||||
adapter->seq_num++;
|
||||
host_cmd->seq_num = cpu_to_le16(HostCmd_SET_SEQ_NO_BSS_INFO
|
||||
(adapter->seq_num, cmd_node->priv->bss_num,
|
||||
(adapter->seq_num,
|
||||
cmd_node->priv->bss_num,
|
||||
cmd_node->priv->bss_type));
|
||||
|
||||
spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
|
||||
@ -258,12 +259,12 @@ static int mwifiex_dnld_sleep_confirm_cmd(struct mwifiex_adapter *adapter)
|
||||
else
|
||||
adapter->ps_state = PS_STATE_SLEEP_CFM;
|
||||
|
||||
if (!sleep_cfm_buf->resp_ctrl
|
||||
&& (adapter->is_hs_configured
|
||||
&& !adapter->sleep_period.period)) {
|
||||
if (!sleep_cfm_buf->resp_ctrl &&
|
||||
(adapter->is_hs_configured &&
|
||||
!adapter->sleep_period.period)) {
|
||||
adapter->pm_wakeup_card_req = true;
|
||||
mwifiex_hs_activated_event(mwifiex_get_priv(adapter,
|
||||
MWIFIEX_BSS_ROLE_STA), true);
|
||||
mwifiex_hs_activated_event(mwifiex_get_priv
|
||||
(adapter, MWIFIEX_BSS_ROLE_STA), true);
|
||||
}
|
||||
}
|
||||
|
||||
@ -578,8 +579,8 @@ mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter,
|
||||
if (command == HostCmd_CMD_802_11_PS_MODE_ENH) {
|
||||
struct host_cmd_ds_802_11_ps_mode_enh *pm =
|
||||
&host_cmd->params.psmode_enh;
|
||||
if ((le16_to_cpu(pm->action) == DIS_PS)
|
||||
|| (le16_to_cpu(pm->action) == DIS_AUTO_PS)) {
|
||||
if ((le16_to_cpu(pm->action) == DIS_PS) ||
|
||||
(le16_to_cpu(pm->action) == DIS_AUTO_PS)) {
|
||||
if (adapter->ps_state != PS_STATE_AWAKE)
|
||||
add_tail = false;
|
||||
}
|
||||
@ -761,8 +762,8 @@ int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter)
|
||||
|
||||
if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) {
|
||||
adapter->curr_cmd->cmd_flag &= ~CMD_F_HOSTCMD;
|
||||
if ((cmdresp_result == HostCmd_RESULT_OK)
|
||||
&& (cmdresp_no == HostCmd_CMD_802_11_HS_CFG_ENH))
|
||||
if ((cmdresp_result == HostCmd_RESULT_OK) &&
|
||||
(cmdresp_no == HostCmd_CMD_802_11_HS_CFG_ENH))
|
||||
ret = mwifiex_ret_802_11_hs_cfg(priv, resp);
|
||||
} else {
|
||||
/* handle response */
|
||||
@ -824,9 +825,9 @@ mwifiex_cmd_timeout_func(unsigned long function_context)
|
||||
adapter->dbg.timeout_cmd_act =
|
||||
adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index];
|
||||
do_gettimeofday(&tstamp);
|
||||
dev_err(adapter->dev, "%s: Timeout cmd id (%lu.%lu) = %#x,"
|
||||
" act = %#x\n", __func__,
|
||||
tstamp.tv_sec, tstamp.tv_usec,
|
||||
dev_err(adapter->dev,
|
||||
"%s: Timeout cmd id (%lu.%lu) = %#x, act = %#x\n",
|
||||
__func__, tstamp.tv_sec, tstamp.tv_usec,
|
||||
adapter->dbg.timeout_cmd_id,
|
||||
adapter->dbg.timeout_cmd_act);
|
||||
|
||||
@ -850,7 +851,8 @@ mwifiex_cmd_timeout_func(unsigned long function_context)
|
||||
dev_err(adapter->dev, "last_cmd_resp_index = %d\n",
|
||||
adapter->dbg.last_cmd_resp_index);
|
||||
print_hex_dump_bytes("last_cmd_resp_id: ", DUMP_PREFIX_OFFSET,
|
||||
adapter->dbg.last_cmd_resp_id, DBG_CMD_NUM);
|
||||
adapter->dbg.last_cmd_resp_id,
|
||||
DBG_CMD_NUM);
|
||||
|
||||
dev_err(adapter->dev, "last_event_index = %d\n",
|
||||
adapter->dbg.last_event_index);
|
||||
@ -1078,7 +1080,8 @@ mwifiex_process_hs_config(struct mwifiex_adapter *adapter)
|
||||
adapter->hs_activated = false;
|
||||
adapter->is_hs_configured = false;
|
||||
mwifiex_hs_activated_event(mwifiex_get_priv(adapter,
|
||||
MWIFIEX_BSS_ROLE_ANY), false);
|
||||
MWIFIEX_BSS_ROLE_ANY),
|
||||
false);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -1114,8 +1117,9 @@ mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *adapter,
|
||||
command &= HostCmd_CMD_ID_MASK;
|
||||
|
||||
if (command != HostCmd_CMD_802_11_PS_MODE_ENH) {
|
||||
dev_err(adapter->dev, "%s: received unexpected response for"
|
||||
" cmd %x, result = %x\n", __func__, command, result);
|
||||
dev_err(adapter->dev,
|
||||
"%s: rcvd unexpected resp for cmd %#x, result = %x\n",
|
||||
__func__, command, result);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1128,8 +1132,9 @@ mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *adapter,
|
||||
}
|
||||
adapter->pm_wakeup_card_req = true;
|
||||
if (adapter->is_hs_configured)
|
||||
mwifiex_hs_activated_event(mwifiex_get_priv(adapter,
|
||||
MWIFIEX_BSS_ROLE_ANY), true);
|
||||
mwifiex_hs_activated_event(mwifiex_get_priv
|
||||
(adapter, MWIFIEX_BSS_ROLE_ANY),
|
||||
true);
|
||||
adapter->ps_state = PS_STATE_SLEEP;
|
||||
cmd->command = cpu_to_le16(command);
|
||||
cmd->seq_num = cpu_to_le16(seq_num);
|
||||
@ -1198,8 +1203,7 @@ int mwifiex_cmd_enh_power_mode(struct mwifiex_private *priv,
|
||||
cpu_to_le16(adapter->adhoc_awake_period);
|
||||
ps_mode->delay_to_ps =
|
||||
cpu_to_le16(adapter->delay_to_ps);
|
||||
ps_mode->mode =
|
||||
cpu_to_le16(adapter->enhanced_ps_mode);
|
||||
ps_mode->mode = cpu_to_le16(adapter->enhanced_ps_mode);
|
||||
|
||||
}
|
||||
if (ps_bitmap & BITMAP_AUTO_DS) {
|
||||
@ -1244,7 +1248,8 @@ int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv,
|
||||
uint16_t auto_ps_bitmap =
|
||||
le16_to_cpu(ps_mode->params.ps_bitmap);
|
||||
|
||||
dev_dbg(adapter->dev, "info: %s: PS_MODE cmd reply result=%#x action=%#X\n",
|
||||
dev_dbg(adapter->dev,
|
||||
"info: %s: PS_MODE cmd reply result=%#x action=%#X\n",
|
||||
__func__, resp->result, action);
|
||||
if (action == EN_AUTO_PS) {
|
||||
if (auto_ps_bitmap & BITMAP_AUTO_DS) {
|
||||
@ -1254,7 +1259,8 @@ int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv,
|
||||
if (auto_ps_bitmap & BITMAP_STA_PS) {
|
||||
dev_dbg(adapter->dev, "cmd: Enabled STA power save\n");
|
||||
if (adapter->sleep_period.period)
|
||||
dev_dbg(adapter->dev, "cmd: set to uapsd/pps mode\n");
|
||||
dev_dbg(adapter->dev,
|
||||
"cmd: set to uapsd/pps mode\n");
|
||||
}
|
||||
} else if (action == DIS_AUTO_PS) {
|
||||
if (ps_bitmap & BITMAP_AUTO_DS) {
|
||||
@ -1376,7 +1382,8 @@ int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv,
|
||||
adapter->fw_release_number);
|
||||
dev_dbg(adapter->dev, "info: GET_HW_SPEC: permanent addr: %pM\n",
|
||||
hw_spec->permanent_addr);
|
||||
dev_dbg(adapter->dev, "info: GET_HW_SPEC: hw_if_version=%#x version=%#x\n",
|
||||
dev_dbg(adapter->dev,
|
||||
"info: GET_HW_SPEC: hw_if_version=%#x version=%#x\n",
|
||||
le16_to_cpu(hw_spec->hw_if_version),
|
||||
le16_to_cpu(hw_spec->version));
|
||||
|
||||
@ -1393,7 +1400,8 @@ int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv,
|
||||
/* If it's unidentified region code, use the default (USA) */
|
||||
if (i >= MWIFIEX_MAX_REGION_CODE) {
|
||||
adapter->region_code = 0x10;
|
||||
dev_dbg(adapter->dev, "cmd: unknown region code, use default (USA)\n");
|
||||
dev_dbg(adapter->dev,
|
||||
"cmd: unknown region code, use default (USA)\n");
|
||||
}
|
||||
|
||||
adapter->hw_dot_11n_dev_cap = le32_to_cpu(hw_spec->dot_11n_dev_cap);
|
||||
|
Loading…
Reference in New Issue
Block a user