Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 267743
b: refs/heads/master
c: 8310b6c
h: refs/heads/master
i:
  267741: c3c6682
  267739: 9af7904
  267735: 7d6d3af
  267727: 2668fa2
  267711: 9f9acee
v: v3
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 3e8cd4f commit 875e53a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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: 95ce5fc94759fe4c17c9c3afb1cf897045736fa1
refs/heads/master: 8310b6c05c65dfe699dd62be5d71c246ddaefd96
6 changes: 3 additions & 3 deletions trunk/drivers/staging/rtl8192e/rtl819x_Qos.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ struct wmm_tspec {
TSPEC_BODY Body;
};

typedef struct _OCTET_STRING{
struct octet_string {
u8 *Octet;
u16 Length;
}OCTET_STRING, *POCTET_STRING;
};//, *struct octet_string *;
#define MAX_WMMELE_LENGTH 64

typedef u32 QOS_MODE, *PQOS_MODE;
Expand Down Expand Up @@ -356,7 +356,7 @@ struct bss_qos {

QOS_MODE bdQoSMode;
u8 bdWMMIEBuf[MAX_WMMELE_LENGTH];
OCTET_STRING bdWMMIE;
struct octet_string bdWMMIE;

QOS_ELE_SUBTYPE EleSubType;

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192e/rtllib.h
Original file line number Diff line number Diff line change
Expand Up @@ -1882,14 +1882,14 @@ typedef struct _RT_POWER_SAVE_CONTROL
bool bTmpFilterHiddenAP;
bool bTmpUpdateParms;
u8 tmpSsidBuf[33];
OCTET_STRING tmpSsid2Scan;
struct octet_string tmpSsid2Scan;
bool bTmpSsid2Scan;
u8 tmpNetworkType;
u8 tmpChannelNumber;
u16 tmpBcnPeriod;
u8 tmpDtimPeriod;
u16 tmpmCap;
OCTET_STRING tmpSuppRateSet;
struct octet_string tmpSuppRateSet;
u8 tmpSuppRateBuf[MAX_NUM_RATES];
bool bTmpSuppRate;
IbssParms tmpIbpm;
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/staging/rtl8192e/rtllib_softmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru
{
static u8 AironetIeOui[] = {0x00, 0x01, 0x66};
u8 CcxAironetBuf[30];
OCTET_STRING osCcxAironetIE;
struct octet_string osCcxAironetIE;

memset(CcxAironetBuf, 0,30);
osCcxAironetIE.Octet = CcxAironetBuf;
Expand All @@ -1369,7 +1369,7 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru
if (beacon->bCcxRmEnable)
{
static u8 CcxRmCapBuf[] = {0x00, 0x40, 0x96, 0x01, 0x01, 0x00};
OCTET_STRING osCcxRmCap;
struct octet_string osCcxRmCap;

osCcxRmCap.Octet = CcxRmCapBuf;
osCcxRmCap.Length = sizeof(CcxRmCapBuf);
Expand All @@ -1383,7 +1383,7 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru
if ( beacon->BssCcxVerNumber >= 2 )
{
u8 CcxVerNumBuf[] = {0x00, 0x40, 0x96, 0x03, 0x00};
OCTET_STRING osCcxVerNum;
struct octet_string osCcxVerNum;
CcxVerNumBuf[4] = beacon->BssCcxVerNumber;
osCcxVerNum.Octet = CcxVerNumBuf;
osCcxVerNum.Length = sizeof(CcxVerNumBuf);
Expand Down

0 comments on commit 875e53a

Please sign in to comment.