From: Samuel Ortiz Date: Thu, 3 Dec 2009 10:40:16 +0000 (+0100) Subject: iwmc3200wifi: Coex table command does not expect a response X-Git-Tag: v2.6.33-rc1~388^2~2^2~2 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=1ee9d426ff8ae8312137fc9407eff23ca81cef26;p=~emulex%2Finfiniband.git iwmc3200wifi: Coex table command does not expect a response When sending the wiwi coexistence priority table, we should not tell the LMAC that we want a response. Signed-off-by: Samuel Ortiz Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/iwmc3200wifi/commands.c b/drivers/net/wireless/iwmc3200wifi/commands.c index 63d20e0952e..f9dc4b58c49 100644 --- a/drivers/net/wireless/iwmc3200wifi/commands.c +++ b/drivers/net/wireless/iwmc3200wifi/commands.c @@ -192,7 +192,7 @@ int iwm_send_prio_table(struct iwm_priv *iwm) return iwm_send_lmac_ptrough_cmd(iwm, COEX_PRIORITY_TABLE_CMD, &coex_table_cmd, - sizeof(struct iwm_coex_prio_table_cmd), 1); + sizeof(struct iwm_coex_prio_table_cmd), 0); } int iwm_send_init_calib_cfg(struct iwm_priv *iwm, u8 calib_requested)