Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 159146
b: refs/heads/master
c: b6c3217
h: refs/heads/master
v: v3
  • Loading branch information
Zhu Yi authored and John W. Linville committed Jul 24, 2009
1 parent 01c169f commit 93c8c55
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0e371f1a0c0acd4abfa052b01e7b1f4a71ef6590
refs/heads/master: b6c321718e1376b1a55afc63cce090a2c4573417
27 changes: 13 additions & 14 deletions trunk/drivers/net/wireless/iwmc3200wifi/commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ int iwm_send_wifi_if_cmd(struct iwm_priv *iwm, void *payload, u16 payload_size,
test_and_clear_bit(oid, &iwm->wifi_ntfy[0]),
3 * HZ);

if (!ret)
ret = -EBUSY;
return ret ? 0 : -EBUSY;
}

return ret;
Expand Down Expand Up @@ -480,8 +479,10 @@ static int iwm_target_read(struct iwm_priv *iwm, __le32 address,
target_cmd.eop = 1;

ret = iwm_hal_send_target_cmd(iwm, &target_cmd, NULL);
if (ret < 0)
if (ret < 0) {
IWM_ERR(iwm, "Couldn't send READ command\n");
return ret;
}

/* When succeding, the send_target routine returns the seq number */
seq_num = ret;
Expand All @@ -501,7 +502,7 @@ static int iwm_target_read(struct iwm_priv *iwm, __le32 address,

kfree(cmd);

return ret;
return 0;
}

int iwm_read_mac(struct iwm_priv *iwm, u8 *mac)
Expand All @@ -511,7 +512,7 @@ int iwm_read_mac(struct iwm_priv *iwm, u8 *mac)

ret = iwm_target_read(iwm, cpu_to_le32(WICO_MAC_ADDRESS_ADDR),
mac_align, sizeof(mac_align));
if (ret < 0)
if (ret)
return ret;

if (is_valid_ether_addr(mac_align))
Expand Down Expand Up @@ -714,7 +715,7 @@ int iwm_set_key(struct iwm_priv *iwm, bool remove, struct iwm_key *key)
ret = iwm_send_wifi_if_cmd(iwm, &key_remove,
sizeof(struct iwm_umac_key_remove),
1);
if (ret < 0)
if (ret)
return ret;

iwm->keys[key_idx].key_len = 0;
Expand All @@ -736,7 +737,7 @@ int iwm_send_mlme_profile(struct iwm_priv *iwm)
sizeof(struct iwm_umac_wifi_if));

ret = iwm_send_wifi_if_cmd(iwm, &profile, sizeof(profile), 1);
if (ret < 0) {
if (ret) {
IWM_ERR(iwm, "Send profile command failed\n");
return ret;
}
Expand All @@ -752,12 +753,12 @@ int iwm_send_mlme_profile(struct iwm_priv *iwm)
3 * HZ);

ret = iwm_set_key(iwm, 0, key);
if (ret < 0)
if (ret)
return ret;

if (iwm->default_key == i) {
ret = iwm_set_tx_key(iwm, i);
if (ret < 0)
if (ret)
return ret;
}
}
Expand All @@ -778,15 +779,13 @@ int iwm_invalidate_mlme_profile(struct iwm_priv *iwm)
invalid.reason = WLAN_REASON_UNSPECIFIED;

ret = iwm_send_wifi_if_cmd(iwm, &invalid, sizeof(invalid), 1);
if (ret < 0)
if (ret)
return ret;

ret = wait_event_interruptible_timeout(iwm->mlme_queue,
(iwm->umac_profile_active == 0), 2 * HZ);
if (!ret)
return -EBUSY;

return 0;
return ret ? 0 : -EBUSY;
}

int iwm_send_umac_stats_req(struct iwm_priv *iwm, u32 flags)
Expand Down Expand Up @@ -869,7 +868,7 @@ int iwm_scan_ssids(struct iwm_priv *iwm, struct cfg80211_ssid *ssids,
}

ret = iwm_send_wifi_if_cmd(iwm, &req, sizeof(req), 0);
if (ret < 0) {
if (ret) {
IWM_ERR(iwm, "Couldn't send scan request\n");
return ret;
}
Expand Down

0 comments on commit 93c8c55

Please sign in to comment.