Commit 1d2a55fb authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef QOS_TSTREAM to struct qos_tstream

Remove typedef from struct.
Rename struct.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent 8310b6c0
...@@ -301,7 +301,7 @@ typedef union _QOS_TCLAS{ ...@@ -301,7 +301,7 @@ typedef union _QOS_TCLAS{
} TYPE2_8021Q; } TYPE2_8021Q;
} QOS_TCLAS, *PQOS_TCLAS; } QOS_TCLAS, *PQOS_TCLAS;
typedef struct _QOS_TSTREAM{ struct qos_tstream {
bool bUsed; bool bUsed;
u16 MsduLifetime; u16 MsduLifetime;
...@@ -311,7 +311,7 @@ typedef struct _QOS_TSTREAM{ ...@@ -311,7 +311,7 @@ typedef struct _QOS_TSTREAM{
struct wmm_tspec TSpec; struct wmm_tspec TSpec;
struct wmm_tspec OutStandingTSpec; struct wmm_tspec OutStandingTSpec;
u8 NominalPhyRate; u8 NominalPhyRate;
} QOS_TSTREAM, *PQOS_TSTREAM; };
typedef struct _STA_QOS{ typedef struct _STA_QOS{
u8 WMMIEBuf[MAX_WMMELE_LENGTH]; u8 WMMIEBuf[MAX_WMMELE_LENGTH];
...@@ -332,7 +332,7 @@ typedef struct _STA_QOS{ ...@@ -332,7 +332,7 @@ typedef struct _STA_QOS{
ACM acm[4]; ACM acm[4];
ACM_METHOD AcmMethod; ACM_METHOD AcmMethod;
QOS_TSTREAM StaTsArray[MAX_STA_TS_COUNT]; struct qos_tstream StaTsArray[MAX_STA_TS_COUNT];
u8 DialogToken; u8 DialogToken;
struct wmm_tspec TSpec; struct wmm_tspec TSpec;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment