Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: chromeos/drivers/ath6kl/include/ar6kap_common.h

Issue 646055: Atheros AR600x driver + build glue (Closed)
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 //------------------------------------------------------------------------------
2
3 // <copyright file="ar6kap_common.h" company="Atheros">
4 // Copyright (c) 2004-2007 Atheros Corporation. All rights reserved.
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License version 2 as
8 // published by the Free Software Foundation;
9 //
10 // Software distributed under the License is distributed on an "AS
11 // IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
12 // implied. See the License for the specific language governing
13 // rights and limitations under the License.
14 //
15 //
16 //------------------------------------------------------------------------------
17
18 //==============================================================================
19
20 // This file contains the definitions of common AP mode data structures.
21 //
22 // Author(s): ="Atheros"
23 //==============================================================================
24
25 #ifndef _AR6KAP_COMMON_H_
26 #define _AR6KAP_COMMON_H_
27 /*
28 * Used with AR6000_XIOCTL_AP_GET_STA_LIST
29 */
30 typedef struct {
31 A_UINT8 mac[ATH_MAC_LEN];
32 A_UINT8 aid;
33 A_UINT8 keymgmt;
34 A_UINT8 ucipher;
35 A_UINT8 auth;
36 } station_t;
37 typedef struct {
38 station_t sta[AP_MAX_NUM_STA];
39 } ap_get_sta_t;
40 #endif /* _AR6KAP_COMMON_H_ */
OLDNEW
« no previous file with comments | « chromeos/drivers/ath6kl/include/ar6000_diag.h ('k') | chromeos/drivers/ath6kl/include/athbtfilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698