Commit 49f4e74a authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef adhoc_peers_info_t to struct adhoc_peers_info

Remove typedef from struct.
Rename struct.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent f0a1f292
...@@ -191,11 +191,10 @@ struct adhoc_peer_entry { ...@@ -191,11 +191,10 @@ struct adhoc_peer_entry {
unsigned char WirelessMode; unsigned char WirelessMode;
unsigned char bCurTxBW40MHz; unsigned char bCurTxBW40MHz;
}; };
typedef struct struct adhoc_peers_info {
{
struct adhoc_peer_entry Entry[MAX_ADHOC_PEER_NUM]; struct adhoc_peer_entry Entry[MAX_ADHOC_PEER_NUM];
unsigned char num; unsigned char num;
} adhoc_peers_info_t, *p_adhoc_peers_info_t; };
int r8192_wx_get_adhoc_peers(struct net_device *dev, int r8192_wx_get_adhoc_peers(struct net_device *dev,
struct iw_request_info *info, struct iw_request_info *info,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment