diff options
Diffstat (limited to 'drivers/net/wireless/iwmc3200wifi/commands.c')
-rw-r--r-- | drivers/net/wireless/iwmc3200wifi/commands.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/drivers/net/wireless/iwmc3200wifi/commands.c b/drivers/net/wireless/iwmc3200wifi/commands.c index 42df7262f9f7..330c7d9cf101 100644 --- a/drivers/net/wireless/iwmc3200wifi/commands.c +++ b/drivers/net/wireless/iwmc3200wifi/commands.c | |||
@@ -507,7 +507,7 @@ static int iwm_target_read(struct iwm_priv *iwm, __le32 address, | |||
507 | return ret; | 507 | return ret; |
508 | } | 508 | } |
509 | 509 | ||
510 | /* When succeding, the send_target routine returns the seq number */ | 510 | /* When succeeding, the send_target routine returns the seq number */ |
511 | seq_num = ret; | 511 | seq_num = ret; |
512 | 512 | ||
513 | ret = wait_event_interruptible_timeout(iwm->nonwifi_queue, | 513 | ret = wait_event_interruptible_timeout(iwm->nonwifi_queue, |
@@ -782,10 +782,9 @@ int iwm_send_mlme_profile(struct iwm_priv *iwm) | |||
782 | return 0; | 782 | return 0; |
783 | } | 783 | } |
784 | 784 | ||
785 | int iwm_invalidate_mlme_profile(struct iwm_priv *iwm) | 785 | int __iwm_invalidate_mlme_profile(struct iwm_priv *iwm) |
786 | { | 786 | { |
787 | struct iwm_umac_invalidate_profile invalid; | 787 | struct iwm_umac_invalidate_profile invalid; |
788 | int ret; | ||
789 | 788 | ||
790 | invalid.hdr.oid = UMAC_WIFI_IF_CMD_INVALIDATE_PROFILE; | 789 | invalid.hdr.oid = UMAC_WIFI_IF_CMD_INVALIDATE_PROFILE; |
791 | invalid.hdr.buf_size = | 790 | invalid.hdr.buf_size = |
@@ -794,7 +793,14 @@ int iwm_invalidate_mlme_profile(struct iwm_priv *iwm) | |||
794 | 793 | ||
795 | invalid.reason = WLAN_REASON_UNSPECIFIED; | 794 | invalid.reason = WLAN_REASON_UNSPECIFIED; |
796 | 795 | ||
797 | ret = iwm_send_wifi_if_cmd(iwm, &invalid, sizeof(invalid), 1); | 796 | return iwm_send_wifi_if_cmd(iwm, &invalid, sizeof(invalid), 1); |
797 | } | ||
798 | |||
799 | int iwm_invalidate_mlme_profile(struct iwm_priv *iwm) | ||
800 | { | ||
801 | int ret; | ||
802 | |||
803 | ret = __iwm_invalidate_mlme_profile(iwm); | ||
798 | if (ret) | 804 | if (ret) |
799 | return ret; | 805 | return ret; |
800 | 806 | ||