1/****************************************************************************** 2 * 3 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of version 2 of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 ******************************************************************************/ 15#ifndef _RTW_HT_H_ 16#define _RTW_HT_H_ 17 18#include <linux/ieee80211.h> 19 20struct ht_priv { 21 u32 ht_option; 22 u32 ampdu_enable;/* for enable Tx A-MPDU */ 23 u8 bwmode;/* */ 24 u8 ch_offset;/* PRIME_CHNL_OFFSET */ 25 u8 sgi;/* short GI */ 26 27 /* for processing Tx A-MPDU */ 28 u8 agg_enable_bitmap; 29 u8 candidate_tid_bitmap; 30 31 struct ieee80211_ht_cap ht_cap; 32}; 33 34#endif /* _RTL871X_HT_H_ */ 35