diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-agn-sta.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn-sta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-sta.c b/drivers/net/wireless/iwlwifi/iwl-agn-sta.c index 079275f2c64d..0bd722cee5ae 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-sta.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-sta.c | |||
@@ -144,7 +144,7 @@ static int iwl_send_static_wepkey_cmd(struct iwl_priv *priv, | |||
144 | size_t cmd_size = sizeof(struct iwl_wep_cmd); | 144 | size_t cmd_size = sizeof(struct iwl_wep_cmd); |
145 | struct iwl_host_cmd cmd = { | 145 | struct iwl_host_cmd cmd = { |
146 | .id = ctx->wep_key_cmd, | 146 | .id = ctx->wep_key_cmd, |
147 | .data = wep_cmd, | 147 | .data = { wep_cmd, }, |
148 | .flags = CMD_SYNC, | 148 | .flags = CMD_SYNC, |
149 | }; | 149 | }; |
150 | 150 | ||
@@ -172,7 +172,7 @@ static int iwl_send_static_wepkey_cmd(struct iwl_priv *priv, | |||
172 | 172 | ||
173 | cmd_size += sizeof(struct iwl_wep_key) * WEP_KEYS_MAX; | 173 | cmd_size += sizeof(struct iwl_wep_key) * WEP_KEYS_MAX; |
174 | 174 | ||
175 | cmd.len = cmd_size; | 175 | cmd.len[0] = cmd_size; |
176 | 176 | ||
177 | if (not_empty || send_if_empty) | 177 | if (not_empty || send_if_empty) |
178 | return iwl_send_cmd(priv, &cmd); | 178 | return iwl_send_cmd(priv, &cmd); |