linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/31] staging: wfx: fix last items of the TODO list
@ 2020-09-07 10:14 Jerome Pouiller
  2020-09-07 10:14 ` [PATCH 01/31] staging: wfx: improve readability of association processing Jerome Pouiller
                   ` (30 more replies)
  0 siblings, 31 replies; 32+ messages in thread
From: Jerome Pouiller @ 2020-09-07 10:14 UTC (permalink / raw)
  To: devel, linux-wireless
  Cc: netdev, linux-kernel, Greg Kroah-Hartman, Kalle Valo,
	David S . Miller, Jérôme Pouiller

From: Jérôme Pouiller <jerome.pouiller@silabs.com>

Hello folks,

This PR fixes most of the items of the TODO list associated to the wfx driver.
Normally, my next PR will ask to move the wfx driver out of the staging
area.

Jérôme Pouiller (31):
  staging: wfx: improve readability of association processing
  staging: wfx: relocate wfx_join() beside wfx_join_finalize()
  staging: wfx: simplify hif_set_association_mode()
  staging: wfx: keep API error list up-to-date
  staging: wfx: drop 'secure link' feature
  staging: wfx: drop multicast filtering
  staging: wfx: drop useless function
  staging: wfx: drop useless enum hif_beacon
  staging: wfx: drop useless union hif_commands_ids
  staging: wfx: drop useless struct hif_reset_flags
  staging: wfx: drop useless struct hif_ie_flags
  staging: wfx: drop useless struct hif_join_flags
  staging: wfx: drop useless struct hif_bss_flags
  staging: wfx: drop useless struct hif_map_link_flags
  staging: wfx: drop useless struct hif_suspend_resume_flags
  staging: wfx: drop useless struct hif_pm_mode
  staging: wfx: drop useless struct hif_rx_flags
  staging: wfx: drop useless struct hif_tx_result_flags
  staging: wfx: drop useless structs only used in hif_req_tx
  staging: wfx: drop useless stricts only used in hif_req_start_scan_alt
  staging: wfx: drop useless structs only used in hif_ind_startup
  staging: wfx: drop useless union hif_privacy_key_data
  staging: wfx: drop useless union hif_event_data
  staging: wfx: drop useless union hif_indication_data
  staging: wfx: drop struct hif_ie_tlv
  staging: wfx: drop macro API_SSID_SIZE
  staging: wfx: fix naming of hif_tx_rate_retry_policy
  staging: wfx: fix spaces
  staging: wfx: uniformize naming rules in hif_tx_mib.c
  staging: wfx: drop async field from struct hif_cmd
  staging: wfx: update TODO list

 drivers/staging/wfx/TODO              |  19 --
 drivers/staging/wfx/bh.c              |  48 +----
 drivers/staging/wfx/data_rx.c         |   2 +-
 drivers/staging/wfx/data_tx.c         |  42 ++---
 drivers/staging/wfx/hif_api_cmd.h     | 254 ++++++++------------------
 drivers/staging/wfx/hif_api_general.h | 129 ++-----------
 drivers/staging/wfx/hif_api_mib.h     |  48 +----
 drivers/staging/wfx/hif_rx.c          |  45 ++---
 drivers/staging/wfx/hif_tx.c          | 109 ++---------
 drivers/staging/wfx/hif_tx.h          |   7 -
 drivers/staging/wfx/hif_tx_mib.c      | 122 +++----------
 drivers/staging/wfx/hif_tx_mib.h      |  11 +-
 drivers/staging/wfx/main.c            |  17 +-
 drivers/staging/wfx/secure_link.h     |  59 ------
 drivers/staging/wfx/sta.c             | 229 ++++++++++-------------
 drivers/staging/wfx/sta.h             |   2 -
 drivers/staging/wfx/wfx.h             |   5 -
 17 files changed, 280 insertions(+), 868 deletions(-)
 delete mode 100644 drivers/staging/wfx/secure_link.h

-- 
2.28.0


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

end of thread, other threads:[~2020-09-07 10:36 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-07 10:14 [PATCH 00/31] staging: wfx: fix last items of the TODO list Jerome Pouiller
2020-09-07 10:14 ` [PATCH 01/31] staging: wfx: improve readability of association processing Jerome Pouiller
2020-09-07 10:14 ` [PATCH 02/31] staging: wfx: relocate wfx_join() beside wfx_join_finalize() Jerome Pouiller
2020-09-07 10:14 ` [PATCH 03/31] staging: wfx: simplify hif_set_association_mode() Jerome Pouiller
2020-09-07 10:14 ` [PATCH 04/31] staging: wfx: keep API error list up-to-date Jerome Pouiller
2020-09-07 10:14 ` [PATCH 05/31] staging: wfx: drop 'secure link' feature Jerome Pouiller
2020-09-07 10:14 ` [PATCH 06/31] staging: wfx: drop multicast filtering Jerome Pouiller
2020-09-07 10:14 ` [PATCH 07/31] staging: wfx: drop useless function Jerome Pouiller
2020-09-07 10:14 ` [PATCH 08/31] staging: wfx: drop useless enum hif_beacon Jerome Pouiller
2020-09-07 10:14 ` [PATCH 09/31] staging: wfx: drop useless union hif_commands_ids Jerome Pouiller
2020-09-07 10:15 ` [PATCH 10/31] staging: wfx: drop useless struct hif_reset_flags Jerome Pouiller
2020-09-07 10:15 ` [PATCH 11/31] staging: wfx: drop useless struct hif_ie_flags Jerome Pouiller
2020-09-07 10:15 ` [PATCH 12/31] staging: wfx: drop useless struct hif_join_flags Jerome Pouiller
2020-09-07 10:15 ` [PATCH 13/31] staging: wfx: drop useless struct hif_bss_flags Jerome Pouiller
2020-09-07 10:15 ` [PATCH 14/31] staging: wfx: drop useless struct hif_map_link_flags Jerome Pouiller
2020-09-07 10:15 ` [PATCH 15/31] staging: wfx: drop useless struct hif_suspend_resume_flags Jerome Pouiller
2020-09-07 10:15 ` [PATCH 16/31] staging: wfx: drop useless struct hif_pm_mode Jerome Pouiller
2020-09-07 10:15 ` [PATCH 17/31] staging: wfx: drop useless struct hif_rx_flags Jerome Pouiller
2020-09-07 10:15 ` [PATCH 18/31] staging: wfx: drop useless struct hif_tx_result_flags Jerome Pouiller
2020-09-07 10:15 ` [PATCH 19/31] staging: wfx: drop useless structs only used in hif_req_tx Jerome Pouiller
2020-09-07 10:15 ` [PATCH 20/31] staging: wfx: drop useless stricts only used in hif_req_start_scan_alt Jerome Pouiller
2020-09-07 10:15 ` [PATCH 21/31] staging: wfx: drop useless structs only used in hif_ind_startup Jerome Pouiller
2020-09-07 10:15 ` [PATCH 22/31] staging: wfx: drop useless union hif_privacy_key_data Jerome Pouiller
2020-09-07 10:15 ` [PATCH 23/31] staging: wfx: drop useless union hif_event_data Jerome Pouiller
2020-09-07 10:15 ` [PATCH 24/31] staging: wfx: drop useless union hif_indication_data Jerome Pouiller
2020-09-07 10:15 ` [PATCH 25/31] staging: wfx: drop struct hif_ie_tlv Jerome Pouiller
2020-09-07 10:15 ` [PATCH 26/31] staging: wfx: drop macro API_SSID_SIZE Jerome Pouiller
2020-09-07 10:15 ` [PATCH 27/31] staging: wfx: fix naming of hif_tx_rate_retry_policy Jerome Pouiller
2020-09-07 10:15 ` [PATCH 28/31] staging: wfx: fix spaces Jerome Pouiller
2020-09-07 10:15 ` [PATCH 29/31] staging: wfx: uniformize naming rules in hif_tx_mib.c Jerome Pouiller
2020-09-07 10:15 ` [PATCH 30/31] staging: wfx: drop async field from struct hif_cmd Jerome Pouiller
2020-09-07 10:15 ` [PATCH 31/31] staging: wfx: update TODO list Jerome Pouiller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).