Staging: wlan-ng: Remove typedef prism2sta_authlist_t
Remove typdef prism2sta_authlist_t and replace its uses in the code. Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4c0dbe0a2e
commit
c84b528c08
|
@ -1204,11 +1204,11 @@ typedef struct hfa484x_metacmd {
|
|||
#define WLAN_ACCESS_DENY 3 /* Do not authenticate "denied" stations. */
|
||||
|
||||
/* XXX These are going away ASAP */
|
||||
typedef struct prism2sta_authlist {
|
||||
struct prism2sta_authlist {
|
||||
unsigned int cnt;
|
||||
u8 addr[WLAN_AUTH_MAX][ETH_ALEN];
|
||||
u8 assoc[WLAN_AUTH_MAX];
|
||||
} prism2sta_authlist_t;
|
||||
};
|
||||
|
||||
typedef struct prism2sta_accesslist {
|
||||
unsigned int modify;
|
||||
|
@ -1348,7 +1348,7 @@ typedef struct hfa384x {
|
|||
|
||||
hfa384x_InfFrame_t *scanresults;
|
||||
|
||||
prism2sta_authlist_t authlist; /* Authenticated station list. */
|
||||
struct prism2sta_authlist authlist; /* Authenticated station list. */
|
||||
unsigned int accessmode; /* Access mode. */
|
||||
prism2sta_accesslist_t allow; /* Allowed station list. */
|
||||
prism2sta_accesslist_t deny; /* Denied station list. */
|
||||
|
|
Loading…
Reference in New Issue