mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-05 11:53:41 +00:00

Based on the normalized pattern: this software file (the file ) is distributed by nxp under the terms of the gnu general public license version 2 june 1991 (the license ) you may use redistribute and/or modify this file in accordance with the terms and conditions of the license a copy of which is available by writing to the free software foundation inc 51 franklin street fifth floor boston ma 02110-1301 usa or on the worldwide web at http://www gnu org/licenses/old-licenses/gpl-2 0 txt the file is distributed as-is without warranty of any kind and the implied warranties of merchantability or fitness for a particular purpose are expressly disclaimed the license provides additional details about this warranty disclaimer extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference. Reviewed-by: Allison Randal <allison@lohutok.net> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22 lines
549 B
C
22 lines
549 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* NXP Wireless LAN device driver: 802.11n Aggregation
|
|
*
|
|
* Copyright 2011-2020 NXP
|
|
*/
|
|
|
|
#ifndef _MWIFIEX_11N_AGGR_H_
|
|
#define _MWIFIEX_11N_AGGR_H_
|
|
|
|
#define PKT_TYPE_AMSDU 0xE6
|
|
#define MIN_NUM_AMSDU 2
|
|
|
|
int mwifiex_11n_deaggregate_pkt(struct mwifiex_private *priv,
|
|
struct sk_buff *skb);
|
|
int mwifiex_11n_aggregate_pkt(struct mwifiex_private *priv,
|
|
struct mwifiex_ra_list_tbl *ptr,
|
|
int ptr_index)
|
|
__releases(&priv->wmm.ra_list_spinlock);
|
|
|
|
#endif /* !_MWIFIEX_11N_AGGR_H_ */
|