1 /* SPDX-License-Identifier: GPL-2.0 */
2 /******************************************************************************
3 *
4 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
5 *
6 ******************************************************************************/
7 #ifndef _RTW_HT_H_
8 #define _RTW_HT_H_
9
10 #include <linux/ieee80211.h>
11
12 struct ht_priv {
13 u32 ht_option;
14 u32 ampdu_enable;/* for enable Tx A-MPDU */
15 u8 bwmode;/* */
16 u8 ch_offset;/* PRIME_CHNL_OFFSET */
17 u8 sgi;/* short GI */
18
19 /* for processing Tx A-MPDU */
20 u8 agg_enable_bitmap;
21 u8 candidate_tid_bitmap;
22
23 struct ieee80211_ht_cap ht_cap;
24 };
25
26 #endif /* _RTL871X_HT_H_ */