forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'wireless-2024-02-06' of git://git.kernel.org/pub/scm/linux…
…/kernel/git/wireless/wireless Kalle Valo says: ==================== wireless fixes for v6.8-rc4 This time we have unusually large wireless pull request. Several functionality fixes to both stack and iwlwifi. Lots of fixes to warnings, especially to MODULE_DESCRIPTION(). * tag 'wireless-2024-02-06' of git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless: (31 commits) wifi: mt76: mt7996: fix fortify warning wifi: brcmfmac: Adjust n_channels usage for __counted_by wifi: iwlwifi: do not announce EPCS support wifi: iwlwifi: exit eSR only after the FW does wifi: iwlwifi: mvm: fix a battery life regression wifi: mac80211: accept broadcast probe responses on 6 GHz wifi: mac80211: adding missing drv_mgd_complete_tx() call wifi: mac80211: fix waiting for beacons logic wifi: mac80211: fix unsolicited broadcast probe config wifi: mac80211: initialize SMPS mode correctly wifi: mac80211: fix driver debugfs for vif type change wifi: mac80211: set station RX-NSS on reconfig wifi: mac80211: fix RCU use in TDLS fast-xmit wifi: mac80211: improve CSA/ECSA connection refusal wifi: cfg80211: detect stuck ECSA element in probe resp wifi: iwlwifi: remove extra kernel-doc wifi: fill in MODULE_DESCRIPTION()s for mt76 drivers wifi: fill in MODULE_DESCRIPTION()s for wilc1000 wifi: fill in MODULE_DESCRIPTION()s for wl18xx wifi: fill in MODULE_DESCRIPTION()s for p54spi ... ==================== Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
- Loading branch information
Showing
65 changed files
with
247 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4169,14 +4169,14 @@ F: drivers/firmware/broadcom/tee_bnxt_fw.c | |
F: drivers/net/ethernet/broadcom/bnxt/ | ||
F: include/linux/firmware/broadcom/tee_bnxt_fw.h | ||
|
||
BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER | ||
M: Arend van Spriel <[email protected]> | ||
M: Franky Lin <[email protected]> | ||
M: Hante Meuleman <[email protected]> | ||
BROADCOM BRCM80211 IEEE802.11 WIRELESS DRIVERS | ||
M: Arend van Spriel <[email protected]> | ||
L: [email protected] | ||
L: [email protected] | ||
L: [email protected] | ||
S: Supported | ||
F: drivers/net/wireless/broadcom/brcm80211/ | ||
F: include/linux/platform_data/brcmfmac.h | ||
|
||
BROADCOM BRCMSTB GPIO DRIVER | ||
M: Doug Berger <[email protected]> | ||
|
@@ -11127,7 +11127,6 @@ S: Supported | |
F: drivers/net/wireless/intel/iwlegacy/ | ||
|
||
INTEL WIRELESS WIFI LINK (iwlwifi) | ||
M: Gregory Greenman <[email protected]> | ||
M: Miri Korenblit <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1685,6 +1685,7 @@ static struct platform_driver wcn36xx_driver = { | |
|
||
module_platform_driver(wcn36xx_driver); | ||
|
||
MODULE_DESCRIPTION("Qualcomm Atheros WCN3660/3680 wireless driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); | ||
MODULE_AUTHOR("Eugene Krasnikov [email protected]"); | ||
MODULE_FIRMWARE(WLAN_NV_FILE); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -700,6 +700,7 @@ static struct spi_driver p54spi_driver = { | |
|
||
module_spi_driver(p54spi_driver); | ||
|
||
MODULE_DESCRIPTION("Prism54 SPI wireless driver"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Christian Lamparter <[email protected]>"); | ||
MODULE_ALIAS("spi:cx3110x"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -253,4 +253,5 @@ module_sdio_driver(mt7663s_driver); | |
|
||
MODULE_AUTHOR("Sean Wang <[email protected]>"); | ||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT7663S (SDIO) wireless driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -281,4 +281,5 @@ module_usb_driver(mt7663u_driver); | |
|
||
MODULE_AUTHOR("Sean Wang <[email protected]>"); | ||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT7663U (USB) wireless driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -349,4 +349,5 @@ EXPORT_SYMBOL_GPL(mt7663_usb_sdio_register_device); | |
|
||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_AUTHOR("Sean Wang <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT7663 SDIO/USB helpers"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3160,4 +3160,5 @@ int mt76_connac2_mcu_fill_message(struct mt76_dev *dev, struct sk_buff *skb, | |
EXPORT_SYMBOL_GPL(mt76_connac2_mcu_fill_message); | ||
|
||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT76x connac layer helpers"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -293,4 +293,5 @@ void mt76x02u_init_mcu(struct mt76_dev *dev) | |
EXPORT_SYMBOL_GPL(mt76x02u_init_mcu); | ||
|
||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT76x02 MCU helpers"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,4 +147,5 @@ static struct usb_driver mt76x2u_driver = { | |
module_usb_driver(mt76x2u_driver); | ||
|
||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT76x2U (USB) wireless driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1418,5 +1418,6 @@ const struct ieee80211_ops mt7921_ops = { | |
}; | ||
EXPORT_SYMBOL_GPL(mt7921_ops); | ||
|
||
MODULE_DESCRIPTION("MediaTek MT7921 core driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); | ||
MODULE_AUTHOR("Sean Wang <[email protected]>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -544,4 +544,5 @@ MODULE_FIRMWARE(MT7922_FIRMWARE_WM); | |
MODULE_FIRMWARE(MT7922_ROM_PATCH); | ||
MODULE_AUTHOR("Sean Wang <[email protected]>"); | ||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT7921E (PCIe) wireless driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -323,5 +323,6 @@ static struct sdio_driver mt7921s_driver = { | |
.drv.pm = pm_sleep_ptr(&mt7921s_pm_ops), | ||
}; | ||
module_sdio_driver(mt7921s_driver); | ||
MODULE_DESCRIPTION("MediaTek MT7921S (SDIO) wireless driver"); | ||
MODULE_AUTHOR("Sean Wang <[email protected]>"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,5 +336,6 @@ static struct usb_driver mt7921u_driver = { | |
}; | ||
module_usb_driver(mt7921u_driver); | ||
|
||
MODULE_DESCRIPTION("MediaTek MT7921U (USB) wireless driver"); | ||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1450,4 +1450,5 @@ const struct ieee80211_ops mt7925_ops = { | |
EXPORT_SYMBOL_GPL(mt7925_ops); | ||
|
||
MODULE_AUTHOR("Deren Wu <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT7925 core driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -583,4 +583,5 @@ MODULE_FIRMWARE(MT7925_FIRMWARE_WM); | |
MODULE_FIRMWARE(MT7925_ROM_PATCH); | ||
MODULE_AUTHOR("Deren Wu <[email protected]>"); | ||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT7925E (PCIe) wireless driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -329,4 +329,5 @@ static struct usb_driver mt7925u_driver = { | |
module_usb_driver(mt7925u_driver); | ||
|
||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT7925U (USB) wireless driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -862,5 +862,6 @@ int mt792x_load_firmware(struct mt792x_dev *dev) | |
} | ||
EXPORT_SYMBOL_GPL(mt792x_load_firmware); | ||
|
||
MODULE_DESCRIPTION("MediaTek MT792x core driver"); | ||
MODULE_LICENSE("Dual BSD/GPL"); | ||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -314,5 +314,6 @@ void mt792xu_disconnect(struct usb_interface *usb_intf) | |
} | ||
EXPORT_SYMBOL_GPL(mt792xu_disconnect); | ||
|
||
MODULE_DESCRIPTION("MediaTek MT792x USB helpers"); | ||
MODULE_LICENSE("Dual BSD/GPL"); | ||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -672,4 +672,5 @@ EXPORT_SYMBOL_GPL(mt76s_init); | |
|
||
MODULE_AUTHOR("Sean Wang <[email protected]>"); | ||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT76x SDIO helpers"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1128,4 +1128,5 @@ int mt76u_init(struct mt76_dev *dev, struct usb_interface *intf) | |
EXPORT_SYMBOL_GPL(mt76u_init); | ||
|
||
MODULE_AUTHOR("Lorenzo Bianconi <[email protected]>"); | ||
MODULE_DESCRIPTION("MediaTek MT76x USB helpers"); | ||
MODULE_LICENSE("Dual BSD/GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.