Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /******************************************************************************
0003  *
0004  * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
0005  *
0006  * Modifications for inclusion into the Linux staging tree are
0007  * Copyright(c) 2010 Larry Finger. All rights reserved.
0008  *
0009  * Contact information:
0010  * WLAN FAE <wlanfae@realtek.com>
0011  * Larry Finger <Larry.Finger@lwfinger.net>
0012  *
0013  ******************************************************************************/
0014 #ifndef _RTL871X_HT_H_
0015 #define _RTL871X_HT_H_
0016 
0017 #include "osdep_service.h"
0018 #include "wifi.h"
0019 
0020 struct ht_priv {
0021     unsigned int    ht_option;
0022     unsigned int    ampdu_enable;/*for enable Tx A-MPDU*/
0023     unsigned char   baddbareq_issued[16];
0024     unsigned int    tx_amsdu_enable;/*for enable Tx A-MSDU */
0025     unsigned int    tx_amdsu_maxlen; /* 1: 8k, 0:4k ; default:8k, for tx */
0026     unsigned int    rx_ampdu_maxlen; /* for rx reordering ctrl win_sz,
0027                       * updated when join_callback.
0028                       */
0029     struct ieee80211_ht_cap ht_cap;
0030 };
0031 
0032 #endif  /*_RTL871X_HT_H_ */
0033