Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6bfcb7e8 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach Committed by Johannes Berg
Browse files

iwlwifi: mvm: update firmware API - MAC ID in RX



The firmware tells the driver to what MACs the received frame
belongs (based on the time slot in which it was received).

Note that there can be several MACs if they share the same
binding.

Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 10942342
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -801,6 +801,7 @@ struct iwl_phy_context_cmd {
 * @byte_count: frame's byte-count
 * @byte_count: frame's byte-count
 * @frame_time: frame's time on the air, based on byte count and frame rate
 * @frame_time: frame's time on the air, based on byte count and frame rate
 *	calculation
 *	calculation
 * @mac_active_msk: what MACs were active when the frame was received
 *
 *
 * Before each Rx, the device sends this data. It contains PHY information
 * Before each Rx, the device sends this data. It contains PHY information
 * about the reception of the packet.
 * about the reception of the packet.
@@ -818,7 +819,7 @@ struct iwl_rx_phy_info {
	__le32 non_cfg_phy[IWL_RX_INFO_PHY_CNT];
	__le32 non_cfg_phy[IWL_RX_INFO_PHY_CNT];
	__le32 rate_n_flags;
	__le32 rate_n_flags;
	__le32 byte_count;
	__le32 byte_count;
	__le16 reserved2;
	__le16 mac_active_msk;
	__le16 frame_time;
	__le16 frame_time;
} __packed;
} __packed;