staging: rtl8192e: Convert typedef QOS_TSINFO to union qos_tsinfo
Remove typedef from union. Rename union. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
@@ -54,7 +54,7 @@
|
|||||||
#define BIT30 0x40000000
|
#define BIT30 0x40000000
|
||||||
#define BIT31 0x80000000
|
#define BIT31 0x80000000
|
||||||
|
|
||||||
typedef union _QOS_TSINFO{
|
union qos_tsinfo {
|
||||||
u8 charData[3];
|
u8 charData[3];
|
||||||
struct {
|
struct {
|
||||||
u8 ucTrafficType:1;
|
u8 ucTrafficType:1;
|
||||||
@@ -68,13 +68,14 @@ typedef union _QOS_TSINFO{
|
|||||||
u8 ucSchedule:1;
|
u8 ucSchedule:1;
|
||||||
u8 ucReserved:7;
|
u8 ucReserved:7;
|
||||||
}field;
|
}field;
|
||||||
}QOS_TSINFO, *PQOS_TSINFO;
|
};
|
||||||
|
|
||||||
typedef union _TSPEC_BODY{
|
typedef union _TSPEC_BODY{
|
||||||
u8 charData[55];
|
u8 charData[55];
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
QOS_TSINFO TSInfo;
|
union qos_tsinfo TSInfo;
|
||||||
u16 NominalMSDUsize;
|
u16 NominalMSDUsize;
|
||||||
u16 MaxMSDUsize;
|
u16 MaxMSDUsize;
|
||||||
u32 MinServiceItv;
|
u32 MinServiceItv;
|
||||||
|
@@ -377,7 +377,7 @@ bool GetTs(
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
TSPEC_BODY TSpec;
|
TSPEC_BODY TSpec;
|
||||||
PQOS_TSINFO pTSInfo = &TSpec.f.TSInfo;
|
union qos_tsinfo *pTSInfo = &TSpec.f.TSInfo;
|
||||||
struct list_head* pUnusedList =
|
struct list_head* pUnusedList =
|
||||||
(TxRxSelect == TX_DIR)?
|
(TxRxSelect == TX_DIR)?
|
||||||
(&ieee->Tx_TS_Unused_List):
|
(&ieee->Tx_TS_Unused_List):
|
||||||
|
Reference in New Issue
Block a user