ath6kl: fix error handling ath6kl_target_config_wlan_params()

The error handling in ath6kl_target_config_wlan_params() was just weird,
fix that. This also fixes some of the open parenthesis alignment issues
reported by checkpatch.

Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
Kalle Valo 2012-03-07 20:03:59 +02:00
parent 80fb268639
commit 1ca4d0b6b9
1 changed files with 41 additions and 31 deletions

View File

@ -378,7 +378,6 @@ out:
static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx) static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx)
{ {
int status = 0;
int ret; int ret;
/* /*
@ -386,43 +385,54 @@ static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx)
* default values. Required if checksum offload is needed. Set * default values. Required if checksum offload is needed. Set
* RxMetaVersion to 2. * RxMetaVersion to 2.
*/ */
if (ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, idx, ret = ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, idx,
ar->rx_meta_ver, 0, 0)) { ar->rx_meta_ver, 0, 0);
ath6kl_err("unable to set the rx frame format\n"); if (ret) {
status = -EIO; ath6kl_err("unable to set the rx frame format: %d\n", ret);
return ret;
} }
if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN) if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN) {
if ((ath6kl_wmi_pmparams_cmd(ar->wmi, idx, 0, 1, 0, 0, 1, ret = ath6kl_wmi_pmparams_cmd(ar->wmi, idx, 0, 1, 0, 0, 1,
IGNORE_POWER_SAVE_FAIL_EVENT_DURING_SCAN)) != 0) { IGNORE_POWER_SAVE_FAIL_EVENT_DURING_SCAN);
ath6kl_err("unable to set power save fail event policy\n"); if (ret) {
status = -EIO; ath6kl_err("unable to set power save fail event policy: %d\n",
ret);
return ret;
} }
if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER))
if ((ath6kl_wmi_set_lpreamble_cmd(ar->wmi, idx, 0,
WMI_DONOT_IGNORE_BARKER_IN_ERP)) != 0) {
ath6kl_err("unable to set barker preamble policy\n");
status = -EIO;
}
if (ath6kl_wmi_set_keepalive_cmd(ar->wmi, idx,
WLAN_CONFIG_KEEP_ALIVE_INTERVAL)) {
ath6kl_err("unable to set keep alive interval\n");
status = -EIO;
} }
if (ath6kl_wmi_disctimeout_cmd(ar->wmi, idx, if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER)) {
WLAN_CONFIG_DISCONNECT_TIMEOUT)) { ret = ath6kl_wmi_set_lpreamble_cmd(ar->wmi, idx, 0,
ath6kl_err("unable to set disconnect timeout\n"); WMI_DONOT_IGNORE_BARKER_IN_ERP);
status = -EIO; if (ret) {
ath6kl_err("unable to set barker preamble policy: %d\n",
ret);
return ret;
}
} }
if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST)) ret = ath6kl_wmi_set_keepalive_cmd(ar->wmi, idx,
if (ath6kl_wmi_set_wmm_txop(ar->wmi, idx, WMI_TXOP_DISABLED)) { WLAN_CONFIG_KEEP_ALIVE_INTERVAL);
ath6kl_err("unable to set txop bursting\n"); if (ret) {
status = -EIO; ath6kl_err("unable to set keep alive interval: %d\n", ret);
return ret;
}
ret = ath6kl_wmi_disctimeout_cmd(ar->wmi, idx,
WLAN_CONFIG_DISCONNECT_TIMEOUT);
if (ret) {
ath6kl_err("unable to set disconnect timeout: %d\n", ret);
return ret;
}
if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST)) {
ret = ath6kl_wmi_set_wmm_txop(ar->wmi, idx, WMI_TXOP_DISABLED);
if (ret) {
ath6kl_err("unable to set txop bursting: %d\n", ret);
return ret;
} }
}
if (ar->p2p && (ar->vif_max == 1 || idx)) { if (ar->p2p && (ar->vif_max == 1 || idx)) {
ret = ath6kl_wmi_info_req_cmd(ar->wmi, idx, ret = ath6kl_wmi_info_req_cmd(ar->wmi, idx,
@ -446,7 +456,7 @@ static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx)
} }
} }
return status; return ret;
} }
int ath6kl_configure_target(struct ath6kl *ar) int ath6kl_configure_target(struct ath6kl *ar)