Commit 95ce5fc9 authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef WMM_TSPEC to struct wmm_tspec

Remove typedef from struct.
Rename struct.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent 2ae7ea8c
...@@ -93,7 +93,7 @@ typedef union _TSPEC_BODY{ ...@@ -93,7 +93,7 @@ typedef union _TSPEC_BODY{
} f; } f;
}TSPEC_BODY, *PTSPEC_BODY; }TSPEC_BODY, *PTSPEC_BODY;
typedef struct _WMM_TSPEC{ struct wmm_tspec {
u8 ID; u8 ID;
u8 Length; u8 Length;
u8 OUI[3]; u8 OUI[3];
...@@ -101,7 +101,7 @@ typedef struct _WMM_TSPEC{ ...@@ -101,7 +101,7 @@ typedef struct _WMM_TSPEC{
u8 OUI_SubType; u8 OUI_SubType;
u8 Version; u8 Version;
TSPEC_BODY Body; TSPEC_BODY Body;
} WMM_TSPEC, *PWMM_TSPEC; };
typedef struct _OCTET_STRING{ typedef struct _OCTET_STRING{
u8 *Octet; u8 *Octet;
...@@ -308,8 +308,8 @@ typedef struct _QOS_TSTREAM{ ...@@ -308,8 +308,8 @@ typedef struct _QOS_TSTREAM{
bool bEstablishing; bool bEstablishing;
u8 TimeSlotCount; u8 TimeSlotCount;
u8 DialogToken; u8 DialogToken;
WMM_TSPEC TSpec; struct wmm_tspec TSpec;
WMM_TSPEC OutStandingTSpec; struct wmm_tspec OutStandingTSpec;
u8 NominalPhyRate; u8 NominalPhyRate;
} QOS_TSTREAM, *PQOS_TSTREAM; } QOS_TSTREAM, *PQOS_TSTREAM;
...@@ -334,7 +334,7 @@ typedef struct _STA_QOS{ ...@@ -334,7 +334,7 @@ typedef struct _STA_QOS{
QOS_TSTREAM StaTsArray[MAX_STA_TS_COUNT]; QOS_TSTREAM StaTsArray[MAX_STA_TS_COUNT];
u8 DialogToken; u8 DialogToken;
WMM_TSPEC TSpec; struct wmm_tspec TSpec;
u8 QBssWirelessMode; u8 QBssWirelessMode;
......
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