Merge branch 'x86-platform-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[pandora-kernel.git] / drivers / staging / ath6kl / include / ar6kap_common.h
1 //------------------------------------------------------------------------------
2
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.
10 //
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.
18 //
19 //
20 //------------------------------------------------------------------------------
21
22 //==============================================================================
23
24 // This file contains the definitions of common AP mode data structures.
25 //
26 // Author(s): ="Atheros"
27 //==============================================================================
28
29 #ifndef _AR6KAP_COMMON_H_
30 #define _AR6KAP_COMMON_H_
31 /*
32  * Used with AR6000_XIOCTL_AP_GET_STA_LIST
33  */
34 typedef struct {
35     A_UINT8     mac[ATH_MAC_LEN];
36     A_UINT8     aid;
37     A_UINT8     keymgmt;
38     A_UINT8     ucipher;
39     A_UINT8     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_ */