From: Bjoern A. Zeeb Date: Wed, 10 Mar 2021 14:39:58 +0000 (+0000) Subject: iwlwifi: do not use __unused as variable name X-Git-Tag: block-5.17-2022-01-21~91^2~134^2~9^2~47 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=9160955a80e2819434dd1897080a8fc6cadbb86f;p=linux-block.git iwlwifi: do not use __unused as variable name 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 Signed-off-by: Luca Coelho --- 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 @@ -580,7 +580,7 @@ struct iwl_rb_status { __le16 closed_fr_num; __le16 finished_rb_num; __le16 finished_fr_nam; - __le32 __unused; + __le32 __spare; } __packed;