All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/31] staging/wfx: apply suggestions from the linux-wireless review
@ 2022-01-13  8:54 Jerome Pouiller
  2022-01-13  8:54 ` [PATCH 01/31] staging: wfx: fix Makefile and Kconfig licenses Jerome Pouiller
                   ` (30 more replies)
  0 siblings, 31 replies; 34+ messages in thread
From: Jerome Pouiller @ 2022-01-13  8:54 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>

Most of the patches of this series are the result of the review process on
linux-wireless[1].

The patches 1 to 25 are cosmetics. The last 3 patches are not fully backward
compatible. I believe it is not a problem in the staging area.

[1]: https://lore.kernel.org/netdev/20220111171424.862764-24-Jerome.Pouiller@silabs.com/T/


Jérôme Pouiller (31):
  staging: wfx: fix Makefile and Kconfig licenses
  staging: wfx: fix HIF API license
  staging: wfx: fix missing headers
  staging: wfx: fix comment correctness
  staging: wfx: explain uncommon Makefile statement
  staging: wfx: remove unnecessary braces
  staging: wfx: remove useless #ifdef
  staging: wfx: use IS_ALIGNED()
  staging: wfx: replace magic value by WFX_HIF_BUFFER_SIZE
  stagigg: wfx: replace magic number by HIF_ID_IS_INDICATION
  staging: wfx: preserve endianness of struct hif_ind_startup
  staging: wfx: fix ambiguous function name
  staging: wfx: fix ambiguous function name
  staging: wfx: prefix functions from hif_*.h with wfx_
  staging: wfx: prefix functions from hwio.h with wfx_
  staging: wfx: prefix functions from debug.h with wfx_
  staging: wfx: prefix tx_policy_is_equal() with wfx_
  staging: wfx: prefix structs hif_* with wfx_
  staging: wfx: prefix structs tx_policy and hwbus_ops with wfx_
  staging: wfx: reformat code on 100 columns
  staging: wfx: reformat comments on 100 columns
  staging: wfx: fix structs alignments
  staging: wfx: use explicit labels for errors
  staging: wfx: replace compiletime_assert() by BUILD_BUG_ON_MSG()
  staging: wfx: do not display functions names in logs
  staging: wfx: remove force_ps_timeout
  staging: wfx: map 'compatible' attribute with board name
  staging: wfx: fix firmware location
  staging: wfx: drop legacy compatible values
  staging: wfx: rename "config-file" DT attribute
  staging: wfx: do not probe the device if not in the DT

 .../bindings/net/wireless/silabs,wfx.yaml     |  23 +-
 drivers/staging/wfx/Kconfig                   |   5 +
 drivers/staging/wfx/Makefile                  |   3 +-
 drivers/staging/wfx/bh.c                      |  67 +++---
 drivers/staging/wfx/bh.h                      |   1 +
 drivers/staging/wfx/bus.h                     |   8 +-
 drivers/staging/wfx/bus_sdio.c                |  97 +++++----
 drivers/staging/wfx/bus_spi.c                 |  98 +++++----
 drivers/staging/wfx/data_rx.c                 |  10 +-
 drivers/staging/wfx/data_rx.h                 |   5 +-
 drivers/staging/wfx/data_tx.c                 | 144 ++++++-------
 drivers/staging/wfx/data_tx.h                 |  20 +-
 drivers/staging/wfx/debug.c                   |  80 ++-----
 drivers/staging/wfx/debug.h                   |   6 +-
 drivers/staging/wfx/fwio.c                    | 113 +++++-----
 drivers/staging/wfx/hif_api_cmd.h             | 150 ++++++-------
 drivers/staging/wfx/hif_api_general.h         |  64 +++---
 drivers/staging/wfx/hif_api_mib.h             |  68 +++---
 drivers/staging/wfx/hif_rx.c                  | 168 +++++++--------
 drivers/staging/wfx/hif_tx.c                  | 194 ++++++++---------
 drivers/staging/wfx/hif_tx.h                  |  67 +++---
 drivers/staging/wfx/hif_tx_mib.c              | 202 ++++++++----------
 drivers/staging/wfx/hif_tx_mib.h              |  67 +++---
 drivers/staging/wfx/hwio.c                    | 171 +++++++--------
 drivers/staging/wfx/hwio.h                    |  35 +--
 drivers/staging/wfx/key.c                     |  84 +++-----
 drivers/staging/wfx/key.h                     |   5 +-
 drivers/staging/wfx/main.c                    | 183 +++++++---------
 drivers/staging/wfx/main.h                    |  12 +-
 drivers/staging/wfx/queue.c                   |  51 ++---
 drivers/staging/wfx/queue.h                   |  13 +-
 drivers/staging/wfx/scan.c                    |  27 +--
 drivers/staging/wfx/sta.c                     | 194 +++++++----------
 drivers/staging/wfx/sta.h                     |  22 +-
 drivers/staging/wfx/traces.h                  |  33 ++-
 drivers/staging/wfx/wfx.h                     |  94 ++++----
 36 files changed, 1171 insertions(+), 1413 deletions(-)

-- 
2.34.1


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

end of thread, other threads:[~2022-01-13 12:16 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-13  8:54 [PATCH 00/31] staging/wfx: apply suggestions from the linux-wireless review Jerome Pouiller
2022-01-13  8:54 ` [PATCH 01/31] staging: wfx: fix Makefile and Kconfig licenses Jerome Pouiller
2022-01-13  8:54 ` [PATCH 02/31] staging: wfx: fix HIF API license Jerome Pouiller
2022-01-13 11:50   ` Kalle Valo
2022-01-13 12:16     ` Jérôme Pouiller
2022-01-13  8:54 ` [PATCH 03/31] staging: wfx: fix missing headers Jerome Pouiller
2022-01-13  8:54 ` [PATCH 04/31] staging: wfx: fix comment correctness Jerome Pouiller
2022-01-13  8:54 ` [PATCH 05/31] staging: wfx: explain uncommon Makefile statement Jerome Pouiller
2022-01-13  8:54 ` [PATCH 06/31] staging: wfx: remove unnecessary braces Jerome Pouiller
2022-01-13  8:55 ` [PATCH 07/31] staging: wfx: remove useless #ifdef Jerome Pouiller
2022-01-13  8:55 ` [PATCH 08/31] staging: wfx: use IS_ALIGNED() Jerome Pouiller
2022-01-13  8:55 ` [PATCH 09/31] staging: wfx: replace magic value by WFX_HIF_BUFFER_SIZE Jerome Pouiller
2022-01-13  8:55 ` [PATCH 10/31] stagigg: wfx: replace magic number by HIF_ID_IS_INDICATION Jerome Pouiller
2022-01-13  8:55 ` [PATCH 11/31] staging: wfx: preserve endianness of struct hif_ind_startup Jerome Pouiller
2022-01-13  8:55 ` [PATCH 12/31] staging: wfx: fix ambiguous function name Jerome Pouiller
2022-01-13  8:55 ` [PATCH 13/31] " Jerome Pouiller
2022-01-13  8:55 ` [PATCH 14/31] staging: wfx: prefix functions from hif_*.h with wfx_ Jerome Pouiller
2022-01-13  8:55 ` [PATCH 15/31] staging: wfx: prefix functions from hwio.h " Jerome Pouiller
2022-01-13  8:55 ` [PATCH 16/31] staging: wfx: prefix functions from debug.h " Jerome Pouiller
2022-01-13  8:55 ` [PATCH 17/31] staging: wfx: prefix tx_policy_is_equal() " Jerome Pouiller
2022-01-13  8:55 ` [PATCH 18/31] staging: wfx: prefix structs hif_* " Jerome Pouiller
2022-01-13  8:55 ` [PATCH 19/31] staging: wfx: prefix structs tx_policy and hwbus_ops " Jerome Pouiller
2022-01-13  8:55 ` [PATCH 20/31] staging: wfx: reformat code on 100 columns Jerome Pouiller
2022-01-13  8:55 ` [PATCH 21/31] staging: wfx: reformat comments " Jerome Pouiller
2022-01-13  8:55 ` [PATCH 22/31] staging: wfx: fix structs alignments Jerome Pouiller
2022-01-13  8:55 ` [PATCH 23/31] staging: wfx: use explicit labels for errors Jerome Pouiller
2022-01-13  8:55 ` [PATCH 24/31] staging: wfx: replace compiletime_assert() by BUILD_BUG_ON_MSG() Jerome Pouiller
2022-01-13  8:55 ` [PATCH 25/31] staging: wfx: do not display functions names in logs Jerome Pouiller
2022-01-13  8:55 ` [PATCH 26/31] staging: wfx: remove force_ps_timeout Jerome Pouiller
2022-01-13  8:55 ` [PATCH 27/31] staging: wfx: map 'compatible' attribute with board name Jerome Pouiller
2022-01-13  8:55 ` [PATCH 28/31] staging: wfx: fix firmware location Jerome Pouiller
2022-01-13  8:55 ` [PATCH 29/31] staging: wfx: drop legacy compatible values Jerome Pouiller
2022-01-13  8:55 ` [PATCH 30/31] staging: wfx: rename "config-file" DT attribute Jerome Pouiller
2022-01-13  8:55 ` [PATCH 31/31] staging: wfx: do not probe the device if not in the DT Jerome Pouiller

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.