xref: /linux/drivers/net/wireless/nxp/nxpwifi/11n_aggr.h (revision 91ec2035134982b98fab0609a9fd8480e8217dc1)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * NXP Wireless LAN device driver: 802.11n Aggregation
4  *
5  * Copyright 2011-2024 NXP
6  */
7 
8 #ifndef _NXPWIFI_11N_AGGR_H_
9 #define _NXPWIFI_11N_AGGR_H_
10 
11 #define PKT_TYPE_AMSDU	0xE6
12 #define MIN_NUM_AMSDU 2
13 
14 int nxpwifi_11n_deaggregate_pkt(struct nxpwifi_private *priv,
15 				struct sk_buff *skb);
16 int nxpwifi_11n_aggregate_pkt(struct nxpwifi_private *priv,
17 			      struct nxpwifi_ra_list_tbl *ptr,
18 			      int ptr_index)
19 			      __releases(&priv->wmm.ra_list_spinlock);
20 
21 #endif /* !_NXPWIFI_11N_AGGR_H_ */
22