diff options
author | David S. Miller <davem@davemloft.net> | 2019-08-06 21:44:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-08-06 21:44:57 -0400 |
commit | 13dfb3fa494361ea9a5950f27c9cd8b06d28c04f (patch) | |
tree | 1bf30874f57c6c6b21160a10282191fcd0868055 /drivers/net/wireless/intel/iwlwifi/mvm/utils.c | |
parent | 05bb520376af2c5146d3c44832c22ec3bb54d778 (diff) | |
parent | 33920f1ec5bf47c5c0a1d2113989bdd9dfb3fae9 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Just minor overlapping changes in the conflicts here.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/mvm/utils.c')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/utils.c b/drivers/net/wireless/intel/iwlwifi/mvm/utils.c index 9ecd5f09615a..b8e20a01c192 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/utils.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/utils.c | |||
@@ -653,12 +653,12 @@ int iwl_mvm_reconfig_scd(struct iwl_mvm *mvm, int queue, int fifo, int sta_id, | |||
653 | * this case to clear the state indicating that station creation is in | 653 | * this case to clear the state indicating that station creation is in |
654 | * progress. | 654 | * progress. |
655 | */ | 655 | */ |
656 | int iwl_mvm_send_lq_cmd(struct iwl_mvm *mvm, struct iwl_lq_cmd *lq, bool sync) | 656 | int iwl_mvm_send_lq_cmd(struct iwl_mvm *mvm, struct iwl_lq_cmd *lq) |
657 | { | 657 | { |
658 | struct iwl_host_cmd cmd = { | 658 | struct iwl_host_cmd cmd = { |
659 | .id = LQ_CMD, | 659 | .id = LQ_CMD, |
660 | .len = { sizeof(struct iwl_lq_cmd), }, | 660 | .len = { sizeof(struct iwl_lq_cmd), }, |
661 | .flags = sync ? 0 : CMD_ASYNC, | 661 | .flags = CMD_ASYNC, |
662 | .data = { lq, }, | 662 | .data = { lq, }, |
663 | }; | 663 | }; |
664 | 664 | ||