summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e/rtllib_tx.c
diff options
context:
space:
mode:
authorLarry Finger2011-07-19 03:22:19 +0200
committerLarry Finger2011-08-24 06:15:26 +0200
commit7796d93eae46054d5a3bb5411fde735801998dc5 (patch)
treedd83f82e4eaa4c97d078b16a09f09beca4ca17cf /drivers/staging/rtl8192e/rtllib_tx.c
parentstaging: rtl8192e: Convert typedef TS_COMMON_INFO to struct ts_common_info (diff)
downloadkernel-qcow2-linux-7796d93eae46054d5a3bb5411fde735801998dc5.tar.gz
kernel-qcow2-linux-7796d93eae46054d5a3bb5411fde735801998dc5.tar.xz
kernel-qcow2-linux-7796d93eae46054d5a3bb5411fde735801998dc5.zip
staging: rtl8192e: Convert typedef RT_HIGH_THROUGHPUT to struct rt_hi_throughput
Remove typedef from struct. Rename struct. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Diffstat (limited to 'drivers/staging/rtl8192e/rtllib_tx.c')
-rw-r--r--drivers/staging/rtl8192e/rtllib_tx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/rtl8192e/rtllib_tx.c b/drivers/staging/rtl8192e/rtllib_tx.c
index dae5df4c732a..dd89b0bebec7 100644
--- a/drivers/staging/rtl8192e/rtllib_tx.c
+++ b/drivers/staging/rtl8192e/rtllib_tx.c
@@ -289,7 +289,7 @@ rtllib_classify(struct sk_buff *skb, u8 bIsAmsdu)
#define SN_LESS(a, b) (((a-b)&0x800)!=0)
void rtllib_tx_query_agg_cap(struct rtllib_device* ieee, struct sk_buff* skb, cb_desc* tcb_desc)
{
- PRT_HIGH_THROUGHPUT pHTInfo = ieee->pHTInfo;
+ struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
struct tx_ts_record *pTxTs = NULL;
struct rtllib_hdr_1addr* hdr = (struct rtllib_hdr_1addr*)skb->data;
@@ -375,7 +375,7 @@ extern void rtllib_qurey_ShortPreambleMode(struct rtllib_device* ieee, cb_desc*
extern void
rtllib_query_HTCapShortGI(struct rtllib_device *ieee, cb_desc *tcb_desc)
{
- PRT_HIGH_THROUGHPUT pHTInfo = ieee->pHTInfo;
+ struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
tcb_desc->bUseShortGI = false;
@@ -396,7 +396,7 @@ rtllib_query_HTCapShortGI(struct rtllib_device *ieee, cb_desc *tcb_desc)
void rtllib_query_BandwidthMode(struct rtllib_device* ieee, cb_desc *tcb_desc)
{
- PRT_HIGH_THROUGHPUT pHTInfo = ieee->pHTInfo;
+ struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
tcb_desc->bPacketBW = false;
@@ -444,7 +444,7 @@ void rtllib_query_protectionmode(struct rtllib_device* ieee, cb_desc* tcb_desc,
}
else
{
- PRT_HIGH_THROUGHPUT pHTInfo = ieee->pHTInfo;
+ struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
while (true)
{
if (pHTInfo->IOTAction & HT_IOT_ACT_FORCED_CTS2SELF)