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

Side by Side Diff: chromeos/drivers/ath6kl/os/linux/include/cfg80211.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 (c) 2004-2010 Atheros Communications Inc.
4 * All rights reserved.
5 *
6 *
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License version 2 as
9 // published by the Free Software Foundation;
10 //
11 // Software distributed under the License is distributed on an "AS
12 // IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
13 // implied. See the License for the specific language governing
14 // rights and limitations under the License.
15 //
16 //
17 *
18 */
19
20 #ifndef _AR6K_CFG80211_H_
21 #define _AR6K_CFG80211_H_
22
23 struct wireless_dev *ar6k_cfg80211_init(struct device *dev);
24 void ar6k_cfg80211_deinit(AR_SOFTC_T *ar);
25
26 void ar6k_cfg80211_scanComplete_event(AR_SOFTC_T *ar, A_STATUS status);
27
28 void ar6k_cfg80211_connect_event(AR_SOFTC_T *ar, A_UINT16 channel,
29 A_UINT8 *bssid, A_UINT16 listenInterval,
30 A_UINT16 beaconInterval,NETWORK_TYPE networkType ,
31 A_UINT8 beaconIeLen, A_UINT8 assocReqLen,
32 A_UINT8 assocRespLen, A_UINT8 *assocInfo);
33
34 void ar6k_cfg80211_disconnect_event(AR_SOFTC_T *ar, A_UINT8 reason,
35 A_UINT8 *bssid, A_UINT8 assocRespLen,
36 A_UINT8 *assocInfo, A_UINT16 protocolReasonS tatus);
37
38 void ar6k_cfg80211_tkip_micerr_event(AR_SOFTC_T *ar, A_UINT8 keyid, A_BOOL ismca st);
39
40 #endif /* _AR6K_CFG80211_H_ */
41
42
43
44
45
46
OLDNEW
« no previous file with comments | « chromeos/drivers/ath6kl/os/linux/include/athtypes_linux.h ('k') | chromeos/drivers/ath6kl/os/linux/include/config_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698