162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */ 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * NXP Wireless LAN device driver: 802.11n Aggregation 462306a36Sopenharmony_ci * 562306a36Sopenharmony_ci * Copyright 2011-2020 NXP 662306a36Sopenharmony_ci */ 762306a36Sopenharmony_ci 862306a36Sopenharmony_ci#ifndef _MWIFIEX_11N_AGGR_H_ 962306a36Sopenharmony_ci#define _MWIFIEX_11N_AGGR_H_ 1062306a36Sopenharmony_ci 1162306a36Sopenharmony_ci#define PKT_TYPE_AMSDU 0xE6 1262306a36Sopenharmony_ci#define MIN_NUM_AMSDU 2 1362306a36Sopenharmony_ci 1462306a36Sopenharmony_ciint mwifiex_11n_deaggregate_pkt(struct mwifiex_private *priv, 1562306a36Sopenharmony_ci struct sk_buff *skb); 1662306a36Sopenharmony_ciint mwifiex_11n_aggregate_pkt(struct mwifiex_private *priv, 1762306a36Sopenharmony_ci struct mwifiex_ra_list_tbl *ptr, 1862306a36Sopenharmony_ci int ptr_index) 1962306a36Sopenharmony_ci __releases(&priv->wmm.ra_list_spinlock); 2062306a36Sopenharmony_ci 2162306a36Sopenharmony_ci#endif /* !_MWIFIEX_11N_AGGR_H_ */ 22