diff options
author | Vatika Harlalka <vatikaharlalka@gmail.com> | 2015-03-21 02:57:24 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-23 17:39:15 -0400 |
commit | c84b528c082a396443104f6931691948c088d94b (patch) | |
tree | b483ad4c70c1a508afbf19232aab4f6fb69dc91b /drivers/staging | |
parent | 4c0dbe0a2e343197d3f86cb23e46fb5d57fa74ca (diff) |
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/wlan-ng/hfa384x.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x.h b/drivers/staging/wlan-ng/hfa384x.h index 73c646bc50d9..0461a00fb0a7 100644 --- a/drivers/staging/wlan-ng/hfa384x.h +++ b/drivers/staging/wlan-ng/hfa384x.h | |||
@@ -1204,11 +1204,11 @@ typedef struct hfa484x_metacmd { | |||
1204 | #define WLAN_ACCESS_DENY 3 /* Do not authenticate "denied" stations. */ | 1204 | #define WLAN_ACCESS_DENY 3 /* Do not authenticate "denied" stations. */ |
1205 | 1205 | ||
1206 | /* XXX These are going away ASAP */ | 1206 | /* XXX These are going away ASAP */ |
1207 | typedef struct prism2sta_authlist { | 1207 | struct prism2sta_authlist { |
1208 | unsigned int cnt; | 1208 | unsigned int cnt; |
1209 | u8 addr[WLAN_AUTH_MAX][ETH_ALEN]; | 1209 | u8 addr[WLAN_AUTH_MAX][ETH_ALEN]; |
1210 | u8 assoc[WLAN_AUTH_MAX]; | 1210 | u8 assoc[WLAN_AUTH_MAX]; |
1211 | } prism2sta_authlist_t; | 1211 | }; |
1212 | 1212 | ||
1213 | typedef struct prism2sta_accesslist { | 1213 | typedef struct prism2sta_accesslist { |
1214 | unsigned int modify; | 1214 | unsigned int modify; |
@@ -1348,7 +1348,7 @@ typedef struct hfa384x { | |||
1348 | 1348 | ||
1349 | hfa384x_InfFrame_t *scanresults; | 1349 | hfa384x_InfFrame_t *scanresults; |
1350 | 1350 | ||
1351 | prism2sta_authlist_t authlist; /* Authenticated station list. */ | 1351 | struct prism2sta_authlist authlist; /* Authenticated station list. */ |
1352 | unsigned int accessmode; /* Access mode. */ | 1352 | unsigned int accessmode; /* Access mode. */ |
1353 | prism2sta_accesslist_t allow; /* Allowed station list. */ | 1353 | prism2sta_accesslist_t allow; /* Allowed station list. */ |
1354 | prism2sta_accesslist_t deny; /* Denied station list. */ | 1354 | prism2sta_accesslist_t deny; /* Denied station list. */ |