staging: rtl8192e: Convert typedef DELBA_PARAM_SET to union delba_param_set

Remove typedef from union.
Rename union.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-19 10:17:01 -05:00
parent 6857f36710
commit f198db0c98
2 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ union ba_param_set {
} field;
};
typedef union _DELBA_PARAM_SET {
union delba_param_set {
u8 charData[2];
u16 shortData;
struct {
@ -64,7 +64,7 @@ typedef union _DELBA_PARAM_SET {
u16 Initiator:1;
u16 TID:4;
} field;
} DELBA_PARAM_SET, *PDELBA_PARAM_SET;
};
struct ba_record {
struct timer_list Timer;

View file

@ -144,7 +144,7 @@ static struct sk_buff* rtllib_DELBA(
u16 ReasonCode
)
{
DELBA_PARAM_SET DelbaParamSet;
union delba_param_set DelbaParamSet;
struct sk_buff *skb = NULL;
struct rtllib_hdr_3addr* Delba = NULL;
u8* tag = NULL;
@ -430,7 +430,7 @@ OnADDBARsp_Reject:
int rtllib_rx_DELBA(struct rtllib_device* ieee,struct sk_buff *skb)
{
struct rtllib_hdr_3addr* delba = NULL;
PDELBA_PARAM_SET pDelBaParamSet = NULL;
union delba_param_set *pDelBaParamSet = NULL;
u16* pReasonCode = NULL;
u8* dst = NULL;
@ -452,7 +452,7 @@ int rtllib_rx_DELBA(struct rtllib_device* ieee,struct sk_buff *skb)
delba = ( struct rtllib_hdr_3addr*)skb->data;
dst = (u8*)(&delba->addr2[0]);
delba += sizeof( struct rtllib_hdr_3addr);
pDelBaParamSet = (PDELBA_PARAM_SET)(delba+2);
pDelBaParamSet = (union delba_param_set *)(delba+2);
pReasonCode = (u16*)(delba+4);
if (pDelBaParamSet->field.Initiator == 1)