All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] staging: wfx: fix support for big-endian hosts
@ 2020-05-11 15:49 ` Jerome Pouiller
  0 siblings, 0 replies; 43+ messages in thread
From: Jerome Pouiller @ 2020-05-11 15:49 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, 

As already discussed here[1], this series improves support for big
endian hosts. All warnings raised by sparse are now fixed.

Note, this series aims to be applied on top of PR named "staging: wfx:
fix Out-Of-Band IRQ"

[1] https://lore.kernel.org/lkml/20191111202852.GX26530@ZenIV.linux.org.uk
  
Jérôme Pouiller (17):
  staging: wfx: fix use of cpu_to_le32 instead of le32_to_cpu
  staging: wfx: take advantage of le32_to_cpup()
  staging: wfx: fix cast operator
  staging: wfx: fix wrong bytes order
  staging: wfx: fix output of rx_stats on big endian hosts
  staging: wfx: fix endianness of fields media_delay and tx_queue_delay
  staging: wfx: fix endianness of hif_req_read_mib fields
  staging: wfx: fix access to le32 attribute 'ps_mode_error'
  staging: wfx: fix access to le32 attribute 'event_id'
  staging: wfx: fix access to le32 attribute 'indication_type'
  staging: wfx: declare the field 'packet_id' with native byte order
  staging: wfx: fix endianness of the struct hif_ind_startup
  staging: wfx: fix endianness of the field 'len'
  staging: wfx: fix endianness of the field 'status'
  staging: wfx: fix endianness of the field 'num_tx_confs'
  staging: wfx: fix endianness of the field 'channel_number'
  staging: wfx: update TODO

 drivers/staging/wfx/TODO              | 19 ---------
 drivers/staging/wfx/bh.c              | 11 +++---
 drivers/staging/wfx/data_rx.c         |  4 +-
 drivers/staging/wfx/data_tx.c         |  9 +++--
 drivers/staging/wfx/debug.c           | 11 ++++--
 drivers/staging/wfx/hif_api_cmd.h     | 42 +++++++++-----------
 drivers/staging/wfx/hif_api_general.h | 55 +++++++++++++++++----------
 drivers/staging/wfx/hif_rx.c          | 32 ++++++++--------
 drivers/staging/wfx/hif_tx.c          | 20 +++++-----
 drivers/staging/wfx/hif_tx_mib.c      |  2 +-
 drivers/staging/wfx/hwio.c            |  2 +-
 drivers/staging/wfx/main.c            |  2 +-
 drivers/staging/wfx/traces.h          |  8 ++--
 13 files changed, 105 insertions(+), 112 deletions(-)

-- 
2.26.2


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

end of thread, other threads:[~2020-05-12  9:26 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-11 15:49 [PATCH 00/17] staging: wfx: fix support for big-endian hosts Jerome Pouiller
2020-05-11 15:49 ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 01/17] staging: wfx: fix use of cpu_to_le32 instead of le32_to_cpu Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 02/17] staging: wfx: take advantage of le32_to_cpup() Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 03/17] staging: wfx: fix cast operator Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 04/17] staging: wfx: fix wrong bytes order Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 05/17] staging: wfx: fix output of rx_stats on big endian hosts Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 06/17] staging: wfx: fix endianness of fields media_delay and tx_queue_delay Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 07/17] staging: wfx: fix endianness of hif_req_read_mib fields Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 08/17] staging: wfx: fix access to le32 attribute 'ps_mode_error' Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 09/17] staging: wfx: fix access to le32 attribute 'event_id' Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 10/17] staging: wfx: fix access to le32 attribute 'indication_type' Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 11/17] staging: wfx: declare the field 'packet_id' with native byte order Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 12/17] staging: wfx: fix endianness of the struct hif_ind_startup Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 13/17] staging: wfx: fix endianness of the field 'len' Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 21:59   ` kbuild test robot
2020-05-11 21:59     ` kbuild test robot
2020-05-11 21:59     ` kbuild test robot
2020-05-12  7:43   ` Geert Uytterhoeven
2020-05-12  7:43     ` Geert Uytterhoeven
2020-05-12  9:25     ` Jérôme Pouiller
2020-05-12  9:25       ` Jérôme Pouiller
2020-05-11 15:49 ` [PATCH 14/17] staging: wfx: fix endianness of the field 'status' Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 15/17] staging: wfx: fix endianness of the field 'num_tx_confs' Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 16/17] staging: wfx: fix endianness of the field 'channel_number' Jerome Pouiller
2020-05-11 15:49   ` Jerome Pouiller
2020-05-11 15:49 ` [PATCH 17/17] staging: wfx: update TODO Jerome Pouiller
2020-05-11 15:49   ` 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.