mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 02:53:36 +02:00
iwlwifi: RX API: remove unnecessary anonymous struct
There's no value in having an anonymous struct for holding a few fields, remove it. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
This commit is contained in:
parent
5cfe79c8d9
commit
838f4c73a3
|
|
@ -601,23 +601,21 @@ struct iwl_rx_mpdu_desc {
|
|||
*/
|
||||
u8 mac_phy_idx;
|
||||
/* DW4 - carries csum data only when rpa_en == 1 */
|
||||
struct {
|
||||
/**
|
||||
* @raw_csum: raw checksum (alledgedly unreliable)
|
||||
*/
|
||||
__le16 raw_csum;
|
||||
|
||||
union {
|
||||
/**
|
||||
* @raw_csum: raw checksum (alledgedly unreliable)
|
||||
* @l3l4_flags: &enum iwl_rx_l3l4_flags
|
||||
*/
|
||||
__le16 raw_csum;
|
||||
__le16 l3l4_flags;
|
||||
|
||||
union {
|
||||
/**
|
||||
* @l3l4_flags: &enum iwl_rx_l3l4_flags
|
||||
*/
|
||||
__le16 l3l4_flags;
|
||||
|
||||
/**
|
||||
* @sigb_common2: for HE sniffer, HE-SIG-B common part 2
|
||||
*/
|
||||
__le16 sigb_common2;
|
||||
};
|
||||
/**
|
||||
* @sigb_common2: for HE sniffer, HE-SIG-B common part 2
|
||||
*/
|
||||
__le16 sigb_common2;
|
||||
};
|
||||
/* DW5 */
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user