22 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * NXP Wireless LAN device driver: 802.11n Aggregation4 *5 * Copyright 2011-2020 NXP6 */7 8#ifndef _MWIFIEX_11N_AGGR_H_9#define _MWIFIEX_11N_AGGR_H_10 11#define PKT_TYPE_AMSDU 0xE612#define MIN_NUM_AMSDU 213 14int mwifiex_11n_deaggregate_pkt(struct mwifiex_private *priv,15 struct sk_buff *skb);16int mwifiex_11n_aggregate_pkt(struct mwifiex_private *priv,17 struct mwifiex_ra_list_tbl *ptr,18 int ptr_index)19 __releases(&priv->wmm.ra_list_spinlock);20 21#endif /* !_MWIFIEX_11N_AGGR_H_ */22