Commit d7ad1415 authored by David S. Miller's avatar David S. Miller
Browse files

Merge tag 'wireless-drivers-next-2020-05-30' of...

Merge tag 'wireless-drivers-next-2020-05-30' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next



Kalle Valo says:

====================
wireless-drivers-next patches for v5.8

Third set of patches for v5.8. Final new features before the merge
window (most likely) opens, noteworthy here is adding WPA3 support to
old drivers rt2800, b43 and b43_legacy.

Major changes:

ath10k

* SDIO and SNOC busses are not experimental anymore

ath9k

* allow receive of broadcast Action frames

ath9k_htc

* allow receive of broadcast Action frames

rt2800

* enable WPA3 support out of box

b43

* enable WPA3 support

b43_legacy

* enable WPA3 support

mwifiex

* advertise max number of clients to user space

mt76

* mt7663: add remain-on-channel support

* mt7915: add spatial reuse support

* add support for mt7611n hardware

iwlwifi

* add ACPI DSM support

* support enabling 5.2GHz bands in Indonesia via ACPI

* bump FW API version to 56
====================

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents b8ded9de e948ed04
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14066,7 +14066,7 @@ F: drivers/net/wireless/ath/wcn36xx/
QUANTENNA QTNFMAC WIRELESS DRIVER
M:	Igor Mitsyanko <imitsyanko@quantenna.com>
M:	Sergey Matyukevich <smatyukevich@quantenna.com>
R:	Sergey Matyukevich <geomatsi@gmail.com>
L:	linux-wireless@vger.kernel.org
S:	Maintained
F:	drivers/net/wireless/quantenna
+3 −4
Original line number Diff line number Diff line
@@ -28,11 +28,10 @@ config ATH10K_AHB
	  This module adds support for AHB bus

config ATH10K_SDIO
	tristate "Atheros ath10k SDIO support (EXPERIMENTAL)"
	tristate "Atheros ath10k SDIO support"
	depends on ATH10K && MMC
	---help---
	  This module adds experimental support for SDIO/MMC bus. Currently
	  work in progress and will not fully work.
	  This module adds support for SDIO/MMC bus.

config ATH10K_USB
	tristate "Atheros ath10k USB support (EXPERIMENTAL)"
@@ -42,7 +41,7 @@ config ATH10K_USB
	  work in progress and will not fully work.

config ATH10K_SNOC
	tristate "Qualcomm ath10k SNOC support (EXPERIMENTAL)"
	tristate "Qualcomm ath10k SNOC support"
	depends on ATH10K
	depends on ARCH_QCOM || COMPILE_TEST
	select QCOM_QMI_HELPERS
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ struct ath10k_ce_ring {
	struct ce_desc_64 *shadow_base;

	/* keep last */
	void *per_transfer_context[0];
	void *per_transfer_context[];
};

struct ath10k_ce_pipe {
+1 −1
Original line number Diff line number Diff line
@@ -1262,7 +1262,7 @@ struct ath10k {
	int coex_gpio_pin;

	/* must be last */
	u8 drv_priv[0] __aligned(sizeof(void *));
	u8 drv_priv[] __aligned(sizeof(void *));
};

static inline bool ath10k_peer_stats_enabled(struct ath10k *ar)
+2 −2
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ struct ath10k_dump_file_data {
	u8 unused[128];

	/* struct ath10k_tlv_dump_data + more */
	u8 data[0];
	u8 data[];
} __packed;

struct ath10k_dump_ram_data_hdr {
@@ -100,7 +100,7 @@ struct ath10k_dump_ram_data_hdr {
	/* length of payload data, not including this header */
	__le32 length;

	u8 data[0];
	u8 data[];
};

/* magic number to fill the holes not copied due to sections in regions */
Loading