ath6kl: remove-typedef HIF_DEVICE
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / ath6kl / include / ar6kap_common.h
blob532d8eba93265a999f488cc172854c8538fc5bbc
1 //------------------------------------------------------------------------------
3 // <copyright file="ar6kap_common.h" company="Atheros">
4 // Copyright (c) 2004-2010 Atheros Corporation. All rights reserved.
5 //
6 //
7 // Permission to use, copy, modify, and/or distribute this software for any
8 // purpose with or without fee is hereby granted, provided that the above
9 // copyright notice and this permission notice appear in all copies.
11 // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 //------------------------------------------------------------------------------
22 //==============================================================================
24 // This file contains the definitions of common AP mode data structures.
26 // Author(s): ="Atheros"
27 //==============================================================================
29 #ifndef _AR6KAP_COMMON_H_
30 #define _AR6KAP_COMMON_H_
32 * Used with AR6000_XIOCTL_AP_GET_STA_LIST
34 typedef struct {
35 u8 mac[ATH_MAC_LEN];
36 u8 aid;
37 u8 keymgmt;
38 u8 ucipher;
39 u8 auth;
40 } station_t;
41 typedef struct {
42 station_t sta[AP_MAX_NUM_STA];
43 } ap_get_sta_t;
44 #endif /* _AR6KAP_COMMON_H_ */