staging: rtl8192e: Convert typedef adhoc_peer_entry_t to struct adhoc_peer_entry

Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger
2011-07-19 00:16:51 -05:00
parent 65dab9a0e1
commit f0a1f2924b

View File

@@ -186,15 +186,14 @@ static int r8192_wx_force_mic_error(struct net_device *dev,
}
#define MAX_ADHOC_PEER_NUM 64
typedef struct
{
struct adhoc_peer_entry {
unsigned char MacAddr[ETH_ALEN];
unsigned char WirelessMode;
unsigned char bCurTxBW40MHz;
} adhoc_peer_entry_t, *p_adhoc_peer_entry_t;
};
typedef struct
{
adhoc_peer_entry_t Entry[MAX_ADHOC_PEER_NUM];
struct adhoc_peer_entry Entry[MAX_ADHOC_PEER_NUM];
unsigned char num;
} adhoc_peers_info_t, *p_adhoc_peers_info_t;