Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef WMM_TSPEC to struct wmm_tspec
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 2ae7ea8 commit 95ce5fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/rtl8192e/rtl819x_Qos.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ typedef union _TSPEC_BODY{
} f;
}TSPEC_BODY, *PTSPEC_BODY;

typedef struct _WMM_TSPEC{
struct wmm_tspec {
u8 ID;
u8 Length;
u8 OUI[3];
u8 OUI_Type;
u8 OUI_SubType;
u8 Version;
TSPEC_BODY Body;
} WMM_TSPEC, *PWMM_TSPEC;
};

typedef struct _OCTET_STRING{
u8 *Octet;
Expand Down Expand Up @@ -308,8 +308,8 @@ typedef struct _QOS_TSTREAM{
bool bEstablishing;
u8 TimeSlotCount;
u8 DialogToken;
WMM_TSPEC TSpec;
WMM_TSPEC OutStandingTSpec;
struct wmm_tspec TSpec;
struct wmm_tspec OutStandingTSpec;
u8 NominalPhyRate;
} QOS_TSTREAM, *PQOS_TSTREAM;

Expand All @@ -334,7 +334,7 @@ typedef struct _STA_QOS{

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

u8 QBssWirelessMode;

Expand Down

0 comments on commit 95ce5fc

Please sign in to comment.