mbox series

[00/11] staging: wfx: clean up HIF API

Message ID 20200406111756.154086-1-Jerome.Pouiller@silabs.com
Headers show
Series staging: wfx: clean up HIF API | expand

Message

Jérôme Pouiller April 6, 2020, 11:17 a.m. UTC
From: Jérôme Pouiller <jerome.pouiller@silabs.com>

Hello all,

This series try to clean up the Hardware InterFace (HIF) API of the
wfx driver.

Notice it intended to be applied on top of Pull-Request named
"staging: wfx: rework the Tx queue".

Jérôme Pouiller (11):
  staging: wfx: drop unused WFX_LINK_ID_GC_TIMEOUT
  staging: wfx: relocate LINK_ID_NO_ASSOC and MAX_STA_IN_AP_MODE to hif
    API
  staging: wfx: relocate TX_RETRY_POLICY_MAX and TX_RETRY_POLICY_INVALID
    to hif API
  staging: wfx: remove unused definitions from the hif API
  staging: wfx: remove useless defines
  staging: wfx: fix endianness of hif API
  staging: wfx: align members declarations in hif API
  staging: wfx: place hif_tx_mib functions into a .c file
  staging: wfx: allow to connect an IBSS with an existing SSID
  staging: wfx: make hif_ie_table_entry const
  staging: wfx: send just necessary bytes

 drivers/staging/wfx/Makefile          |   1 +
 drivers/staging/wfx/data_tx.c         |  20 +-
 drivers/staging/wfx/data_tx.h         |   2 +-
 drivers/staging/wfx/hif_api_cmd.h     | 625 ++++++++++++------------
 drivers/staging/wfx/hif_api_general.h | 429 +++++++---------
 drivers/staging/wfx/hif_api_mib.h     | 671 ++++++++++----------------
 drivers/staging/wfx/hif_tx.c          |   2 +-
 drivers/staging/wfx/hif_tx_mib.c      | 397 +++++++++++++++
 drivers/staging/wfx/hif_tx_mib.h      | 435 ++---------------
 drivers/staging/wfx/key.c             |   1 +
 drivers/staging/wfx/main.c            |   2 +-
 drivers/staging/wfx/queue.h           |   3 -
 drivers/staging/wfx/sta.c             |   5 +-
 13 files changed, 1185 insertions(+), 1408 deletions(-)
 create mode 100644 drivers/staging/wfx/hif_tx_mib.c