diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2010-05-18 12:18:06 -0400 |
---|---|---|
committer | Reinette Chatre <reinette.chatre@intel.com> | 2010-06-06 02:18:56 -0400 |
commit | 3839f7ce6dc749e3170e1bfa656cfac748528117 (patch) | |
tree | c4210fb405273f07239b68087edba2d133590654 /drivers/net/wireless/iwlwifi/iwl-5000.c | |
parent | ff0d91c3eea6e25b47258349b455671f98f1b0cd (diff) |
iwlwifi: do not use huge command buffer for channel switch
Channel switch host command do not need to allocate huge command buffer
since its size is already included in the iwl_device_cmd structure.
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-5000.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-5000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-5000.c b/drivers/net/wireless/iwlwifi/iwl-5000.c index 19bb5b89b63d..32710a801cb0 100644 --- a/drivers/net/wireless/iwlwifi/iwl-5000.c +++ b/drivers/net/wireless/iwlwifi/iwl-5000.c | |||
@@ -285,7 +285,7 @@ static int iwl5000_hw_channel_switch(struct iwl_priv *priv, | |||
285 | struct iwl_host_cmd hcmd = { | 285 | struct iwl_host_cmd hcmd = { |
286 | .id = REPLY_CHANNEL_SWITCH, | 286 | .id = REPLY_CHANNEL_SWITCH, |
287 | .len = sizeof(cmd), | 287 | .len = sizeof(cmd), |
288 | .flags = CMD_SIZE_HUGE, | 288 | .flags = CMD_SYNC, |
289 | .data = &cmd, | 289 | .data = &cmd, |
290 | }; | 290 | }; |
291 | 291 | ||