Merge tag 'wireless-drivers-next-for-davem-2015-12-07' of git://git.kernel.org/pub...
authorDavid S. Miller <davem@davemloft.net>
Tue, 8 Dec 2015 17:39:15 +0000 (12:39 -0500)
committerDavid S. Miller <davem@davemloft.net>
Tue, 8 Dec 2015 17:39:15 +0000 (12:39 -0500)
Kalle Vallo says:

====================
brcfmac

* support bcm4359 which can operate in two bands concurrently
* disable runtime pm for USB avoiding issues
* use generic pm callback in PCIe driver
* support wowlan wake indication reporting
* add beamforming support
* unified handling of firmware files

ath10k

* support Manegement Frame Protection (MFP)
* add thermal throttling support for 10.4 firmware
* add support for pktlog in QCA99X0
* add debugfs file to enable Bluetooth coexistence feature
* use firmware's native mesh interface type instead of raw mode

iwlwifi

* BT coex improvements
* D3 operation bugfixes
* rate control improvements
* firmware debugging infra improvements
* ground work for multi Rx
* various security fixes
====================

Conflicts:
drivers/net/wireless/ath/ath10k/pci.c

The conflict resolution at:

http://article.gmane.org/gmane.linux.kernel.next/37391

by Stephen Rothwell was used.

Signed-off-by: David S. Miller <davem@davemloft.net>
1  2 
drivers/net/wireless/ath/ath10k/core.c
drivers/net/wireless/ath/ath10k/core.h
drivers/net/wireless/ath/ath10k/hw.h
drivers/net/wireless/ath/ath10k/mac.c
drivers/net/wireless/ath/ath10k/pci.c

Simple merge
Simple merge
index 930785a724e1e50705d55e6051d9f53c595ef5ed,5c91a673cf80f23531debe6bc766a444f5437477..14fd73ec1c9693caa8974bcfb88b89bd7071f379
@@@ -107,9 -111,9 +107,10 @@@ static void ath10k_pci_htc_tx_cb(struc
  static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe *ce_state);
  static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe *ce_state);
  static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe *ce_state);
 +static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe *ce_state);
+ static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe *ce_state);
  
 -static const struct ce_attr host_ce_config_wlan[] = {
 +static struct ce_attr host_ce_config_wlan[] = {
        /* CE0: host->target HTC control and raw streams */
        {
                .flags = CE_ATTR_FLAGS,
@@@ -1205,16 -1210,15 +1207,25 @@@ static void ath10k_pci_htc_rx_cb(struc
        ath10k_pci_process_rx_cb(ce_state, ath10k_htc_rx_completion_handler);
  }
  
 +static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe *ce_state)
 +{
 +      /* CE4 polling needs to be done whenever CE pipe which transports
 +       * HTT Rx (target->host) is processed.
 +       */
 +      ath10k_ce_per_engine_service(ce_state->ar, 4);
 +
 +      ath10k_pci_process_rx_cb(ce_state, ath10k_htc_rx_completion_handler);
 +}
 +
+ /* Called by lower (CE) layer when data is received from the Target.
+  * Only 10.4 firmware uses separate CE to transfer pktlog data.
+  */
+ static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe *ce_state)
+ {
+       ath10k_pci_process_rx_cb(ce_state,
+                                ath10k_htt_rx_pktlog_completion_handler);
+ }
  /* Called by lower (CE) layer when a send to HTT Target completes. */
  static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe *ce_state)
  {