xref: /OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/mlan/mlan_11n_aggr.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /** @file mlan_11n_aggr.h
2  *
3  *  @brief This file contains related macros, enum, and struct
4  *  of 11n aggregation functionalities
5  *
6  *
7  *  Copyright 2008-2021 NXP
8  *
9  *  This software file (the File) is distributed by NXP
10  *  under the terms of the GNU General Public License Version 2, June 1991
11  *  (the License).  You may use, redistribute and/or modify the File in
12  *  accordance with the terms and conditions of the License, a copy of which
13  *  is available by writing to the Free Software Foundation, Inc.,
14  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
15  *  worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
16  *
17  *  THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
18  *  IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
19  *  ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
20  *  this warranty disclaimer.
21  *
22  */
23 
24 /********************************************************
25 Change log:
26     11/10/2008: initial version
27 ********************************************************/
28 
29 #ifndef _MLAN_11N_AGGR_H_
30 #define _MLAN_11N_AGGR_H_
31 
32 /** Aggregate 11N packets */
33 mlan_status wlan_11n_deaggregate_pkt(pmlan_private priv, pmlan_buffer pmbuf);
34 /** Deaggregate 11N packets */
35 int wlan_11n_aggregate_pkt(mlan_private *priv, raListTbl *ptr, int headroom,
36 			   int ptrindex);
37 
38 #endif /* !_MLAN_11N_AGGR_H_ */
39