Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef QOS_TSTREAM to struct qos_tstream
Browse files Browse the repository at this point in the history
Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 8310b6c commit 1d2a55f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/rtl819x_Qos.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ typedef union _QOS_TCLAS{
} TYPE2_8021Q;
} QOS_TCLAS, *PQOS_TCLAS;

typedef struct _QOS_TSTREAM{
struct qos_tstream {

bool bUsed;
u16 MsduLifetime;
Expand All @@ -311,7 +311,7 @@ typedef struct _QOS_TSTREAM{
struct wmm_tspec TSpec;
struct wmm_tspec OutStandingTSpec;
u8 NominalPhyRate;
} QOS_TSTREAM, *PQOS_TSTREAM;
};

typedef struct _STA_QOS{
u8 WMMIEBuf[MAX_WMMELE_LENGTH];
Expand All @@ -332,7 +332,7 @@ typedef struct _STA_QOS{
ACM acm[4];
ACM_METHOD AcmMethod;

QOS_TSTREAM StaTsArray[MAX_STA_TS_COUNT];
struct qos_tstream StaTsArray[MAX_STA_TS_COUNT];
u8 DialogToken;
struct wmm_tspec TSpec;

Expand Down

0 comments on commit 1d2a55f

Please sign in to comment.