diff mbox series

[iwlwifi-next] iwlwifi: do not use __unused as variable name

Message ID alpine.BSF.2.00.2102261653290.72241@ai.fobar.qr
State New
Headers show
Series [iwlwifi-next] iwlwifi: do not use __unused as variable name | expand

Commit Message

Bjoern A. Zeeb Feb. 26, 2021, 4:53 p.m. UTC
On various systems __unused is a define to __attribute__((__unused__))
and yields compile errors as a result. Use __spare instead to describe
that these bits are "unused".

Sponsored-by:  The FreeBSD Foundation
Signed-off-by: Bjoern A. Zeeb <bz@FreeBSD.ORG>
---
  drivers/net/wireless/intel/iwlwifi/iwl-fh.h | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-fh.h b/drivers/net/wireless/intel/iwlwifi/iwl-fh.h
index aaa3b65be4e6..e6fd4941a4cb 100644
--- a/drivers/net/wireless/intel/iwlwifi/iwl-fh.h
+++ b/drivers/net/wireless/intel/iwlwifi/iwl-fh.h
@@ -568,29 +568,29 @@  static inline unsigned int FH_MEM_CBBC_QUEUE(struct iwl_trans *trans,
  /**
   * struct iwl_rb_status - reserve buffer status
   * 	host memory mapped FH registers
   * @closed_rb_num [0:11] - Indicates the index of the RB which was closed
   * @closed_fr_num [0:11] - Indicates the index of the RX Frame which was closed
   * @finished_rb_num [0:11] - Indicates the index of the current RB
   * 	in which the last frame was written to
   * @finished_fr_num [0:11] - Indicates the index of the RX Frame
   * 	which was transferred
   */
  struct iwl_rb_status {
  	__le16 closed_rb_num;
  	__le16 closed_fr_num;
  	__le16 finished_rb_num;
  	__le16 finished_fr_nam;
-	__le32 __unused;
+	__le32 __spare;
  } __packed;


  #define TFD_QUEUE_SIZE_MAX      (256)
  #define TFD_QUEUE_SIZE_MAX_GEN3 (65536)
  /* cb size is the exponent - 3 */
  #define TFD_QUEUE_CB_SIZE(x)	(ilog2(x) - 3)
  #define TFD_QUEUE_SIZE_BC_DUP	(64)
  #define TFD_QUEUE_BC_SIZE	(TFD_QUEUE_SIZE_MAX + TFD_QUEUE_SIZE_BC_DUP)
  #define TFD_QUEUE_BC_SIZE_GEN3	1024
  #define IWL_TX_DMA_MASK        DMA_BIT_MASK(36)
  #define IWL_NUM_OF_TBS		20
  #define IWL_TFH_NUM_TBS		25