Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 267833
b: refs/heads/master
c: bb9a7b3
h: refs/heads/master
i:
  267831: 16f603c
v: v3
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 0f3ec96 commit c8a098d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d745c1074aff818bc1263c05fd3a81adc40e5c9a
refs/heads/master: bb9a7b3f239c0a7ab9b05690b8fa7df8eba16dfe
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192e/rtl819x_HT.h
Original file line number Diff line number Diff line change
Expand Up @@ -464,13 +464,13 @@ enum ht_iot_rafunc {
HT_IOT_RAFUNC_TX_AMSDU = 0x02,
};

typedef enum _RT_HT_CAPBILITY{
enum rt_ht_capability {
RT_HT_CAP_USE_TURBO_AGGR = 0x01,
RT_HT_CAP_USE_LONG_PREAMBLE = 0x02,
RT_HT_CAP_USE_AMPDU = 0x04,
RT_HT_CAP_USE_WOW = 0x8,
RT_HT_CAP_USE_SOFTAP = 0x10,
RT_HT_CAP_USE_92SE = 0x20,
} RT_HT_CAPBILITY, *PRT_HT_CAPBILITY;
};

#endif
8 changes: 4 additions & 4 deletions trunk/drivers/staging/rtl8192e/rtl819x_HTProc.c
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ void HTInitializeHTInfo(struct rtllib_device* ieee)

pHTInfo->bCurrentRT2RTAggregation = false;
pHTInfo->bCurrentRT2RTLongSlotTime = false;
pHTInfo->RT2RT_HT_Mode = (RT_HT_CAPBILITY)0;
pHTInfo->RT2RT_HT_Mode = (enum rt_ht_capability)0;

pHTInfo->IOTPeer = 0;
pHTInfo->IOTAction = 0;
Expand All @@ -1003,7 +1003,7 @@ void HTInitializeBssDesc(struct bss_ht *pBssHT)

pBssHT->bdRT2RTAggregation = false;
pBssHT->bdRT2RTLongSlotTime = false;
pBssHT->RT2RT_HT_Mode = (RT_HT_CAPBILITY)0;
pBssHT->RT2RT_HT_Mode = (enum rt_ht_capability)0;
}

void HTResetSelfAndSavePeerSetting(struct rtllib_device* ieee, struct rtllib_network * pNetwork)
Expand Down Expand Up @@ -1034,7 +1034,7 @@ void HTResetSelfAndSavePeerSetting(struct rtllib_device* ieee, struct rtllib_net
{
pHTInfo->bCurrentRT2RTAggregation = false;
pHTInfo->bCurrentRT2RTLongSlotTime = false;
pHTInfo->RT2RT_HT_Mode = (RT_HT_CAPBILITY)0;
pHTInfo->RT2RT_HT_Mode = (enum rt_ht_capability)0;
}

HTIOTPeerDetermine(ieee);
Expand Down Expand Up @@ -1067,7 +1067,7 @@ void HTResetSelfAndSavePeerSetting(struct rtllib_device* ieee, struct rtllib_net
pHTInfo->bCurrentHTSupport = false;
pHTInfo->bCurrentRT2RTAggregation = false;
pHTInfo->bCurrentRT2RTLongSlotTime = false;
pHTInfo->RT2RT_HT_Mode = (RT_HT_CAPBILITY)0;
pHTInfo->RT2RT_HT_Mode = (enum rt_ht_capability)0;

pHTInfo->IOTAction = 0;
pHTInfo->IOTRaFunc = 0;
Expand Down

0 comments on commit c8a098d

Please sign in to comment.