All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/12] mwifiex: two fixes and cleanup
@ 2024-12-02 12:57 Sascha Hauer
  2024-12-02 12:58 ` [PATCH v3 01/12] wifi: mwifiex: add missing locking Sascha Hauer
                   ` (12 more replies)
  0 siblings, 13 replies; 15+ messages in thread
From: Sascha Hauer @ 2024-12-02 12:57 UTC (permalink / raw)
  To: Brian Norris, Francesco Dolcini, Kalle Valo
  Cc: linux-wireless, linux-kernel, David Lin, kernel, Sascha Hauer,
	Francesco Dolcini

These are a few patches broken out from [1]. Kalle requested to limit
the number of patches per series to approximately 12 and Francesco to
move the fixes to the front of the series, so here we go.

First two patches are fixes. First one is for host mlme support which
currently is in wireless-next, so no stable tag needed, second one has a
stable tag.

The remaining patches except the last one I have chosen to upstream
first. I'll continue with the other patches after having this series
in shape and merged.

The last one is a new patch not included in [1].

Sascha

[1] https://lore.kernel.org/all/20240820-mwifiex-cleanup-v1-0-320d8de4a4b7@pengutronix.de/

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
Changes in v3:
- Remove Cc: stable tag from 02/12 wifi: mwifiex: fix MAC address handling
- Add better reasons for setting the locally admistered bit in 02/12
  wifi: mwifiex: fix MAC address handling
- Link to v2: https://lore.kernel.org/r/20240918-mwifiex-cleanup-1-v2-0-2d0597187d3c@pengutronix.de

Changes in v2:
- Add refence to 7bff9c974e1a in commit message of "wifi: mwifiex: drop
  asynchronous init waiting code"
- Add extra sentence about bss_started in "wifi: mwifiex: move common
  settings out of switch/case"
- Kill now unused MWIFIEX_BSS_TYPE_ANY
- Collect reviewed-by tags from Francesco Dolcini
- Link to v1: https://lore.kernel.org/r/20240826-mwifiex-cleanup-1-v1-0-56e6f8e056ec@pengutronix.de

---
Sascha Hauer (12):
      wifi: mwifiex: add missing locking
      wifi: mwifiex: fix MAC address handling
      wifi: mwifiex: deduplicate code in mwifiex_cmd_tx_rate_cfg()
      wifi: mwifiex: use adapter as context pointer for mwifiex_hs_activated_event()
      wifi: mwifiex: drop unnecessary initialization
      wifi: mwifiex: make region_code_mapping_t const
      wifi: mwifiex: pass adapter to mwifiex_dnld_cmd_to_fw()
      wifi: mwifiex: simplify mwifiex_setup_ht_caps()
      wifi: mwifiex: fix indention
      wifi: mwifiex: make locally used function static
      wifi: mwifiex: move common settings out of switch/case
      wifi: mwifiex: drop asynchronous init waiting code

 drivers/net/wireless/marvell/mwifiex/cfg80211.c | 38 ++++------
 drivers/net/wireless/marvell/mwifiex/cfp.c      |  4 +-
 drivers/net/wireless/marvell/mwifiex/cmdevt.c   | 76 +++++++-------------
 drivers/net/wireless/marvell/mwifiex/decl.h     |  1 -
 drivers/net/wireless/marvell/mwifiex/init.c     | 19 ++---
 drivers/net/wireless/marvell/mwifiex/main.c     | 94 +++++++++----------------
 drivers/net/wireless/marvell/mwifiex/main.h     | 16 ++---
 drivers/net/wireless/marvell/mwifiex/sta_cmd.c  | 49 ++++---------
 drivers/net/wireless/marvell/mwifiex/txrx.c     |  3 +-
 drivers/net/wireless/marvell/mwifiex/util.c     | 22 +-----
 drivers/net/wireless/marvell/mwifiex/wmm.c      | 12 ++--
 11 files changed, 105 insertions(+), 229 deletions(-)
---
base-commit: 67a72043aa2e6f60f7bbe7bfa598ba168f16d04f
change-id: 20240826-mwifiex-cleanup-1-b5035c7faff6

Best regards,
-- 
Sascha Hauer <s.hauer@pengutronix.de>


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2024-12-02 15:41 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-02 12:57 [PATCH v3 00/12] mwifiex: two fixes and cleanup Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 01/12] wifi: mwifiex: add missing locking Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 02/12] wifi: mwifiex: fix MAC address handling Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 03/12] wifi: mwifiex: deduplicate code in mwifiex_cmd_tx_rate_cfg() Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 04/12] wifi: mwifiex: use adapter as context pointer for mwifiex_hs_activated_event() Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 05/12] wifi: mwifiex: drop unnecessary initialization Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 06/12] wifi: mwifiex: make region_code_mapping_t const Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 07/12] wifi: mwifiex: pass adapter to mwifiex_dnld_cmd_to_fw() Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 08/12] wifi: mwifiex: simplify mwifiex_setup_ht_caps() Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 09/12] wifi: mwifiex: fix indention Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 10/12] wifi: mwifiex: make locally used function static Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 11/12] wifi: mwifiex: move common settings out of switch/case Sascha Hauer
2024-12-02 12:58 ` [PATCH v3 12/12] wifi: mwifiex: drop asynchronous init waiting code Sascha Hauer
2024-12-02 15:26 ` [PATCH v3 00/12] mwifiex: two fixes and cleanup Kalle Valo
2024-12-02 15:41   ` Sascha Hauer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.