Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef BSS_QOS to struct bss_qos
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 bca54c0 commit 0157d2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/rtl819x_Qos.h
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ typedef struct _STA_QOS{
#define GET_QBSS_LOAD_AVAILABLE_CAPACITY(__pStart) ReadEF2Byte((u8*)(__pStart) + 3)
#define SET_QBSS_LOAD_AVAILABLE_CAPACITY(__pStart, __Value) WriteEF2Byte((u8*)(__pStart) + 3, __Value)

typedef struct _BSS_QOS{
struct bss_qos {

QOS_MODE bdQoSMode;
u8 bdWMMIEBuf[MAX_WMMELE_LENGTH];
Expand All @@ -365,7 +365,7 @@ typedef struct _BSS_QOS{

u8 QBssLoad[QBSS_LOAD_SIZE];
bool bQBssLoadValid;
}BSS_QOS, *PBSS_QOS;
};//, *struct bss_qos *;

#define sQoSCtlLng 2
#define QOS_CTRL_LEN(_QosMode) ( (_QosMode > QOS_DISABLE)? sQoSCtlLng : 0 )
Expand Down

0 comments on commit 0157d2e

Please sign in to comment.