aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rt2860/ap.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/rt2860/ap.h')
-rw-r--r--drivers/staging/rt2860/ap.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/drivers/staging/rt2860/ap.h b/drivers/staging/rt2860/ap.h
deleted file mode 100644
index 2737c0c022f..00000000000
--- a/drivers/staging/rt2860/ap.h
+++ /dev/null
@@ -1,68 +0,0 @@
1/*
2 *************************************************************************
3 * Ralink Tech Inc.
4 * 5F., No.36, Taiyuan St., Jhubei City,
5 * Hsinchu County 302,
6 * Taiwan, R.O.C.
7 *
8 * (c) Copyright 2002-2007, Ralink Technology, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
24 * *
25 *************************************************************************
26
27Module Name:
28ap.h
29
30Abstract:
31Miniport generic portion header file
32
33Revision History:
34Who When What
35-------- ---------- ----------------------------------------------
36Paul Lin 08-01-2002 created
37James Tan 09-06-2002 modified (Revise NTCRegTable)
38John Chang 12-22-2004 modified for RT2561/2661. merge with STA driver
39*/
40#ifndef __AP_H__
41#define __AP_H__
42
43/* ap_wpa.c */
44void WpaStateMachineInit(struct rt_rtmp_adapter *pAd,
45 struct rt_state_machine *Sm,
46 OUT STATE_MACHINE_FUNC Trans[]);
47
48#ifdef RTMP_MAC_USB
49void BeaconUpdateExec(void *SystemSpecific1,
50 void *FunctionContext,
51 void *SystemSpecific2, void *SystemSpecific3);
52#endif /* RTMP_MAC_USB // */
53
54void RTMPSetPiggyBack(struct rt_rtmp_adapter *pAd, IN BOOLEAN bPiggyBack);
55
56void MacTableReset(struct rt_rtmp_adapter *pAd);
57
58struct rt_mac_table_entry *MacTableInsertEntry(struct rt_rtmp_adapter *pAd,
59 u8 *pAddr,
60 u8 apidx, IN BOOLEAN CleanAll);
61
62BOOLEAN MacTableDeleteEntry(struct rt_rtmp_adapter *pAd,
63 u16 wcid, u8 *pAddr);
64
65struct rt_mac_table_entry *MacTableLookup(struct rt_rtmp_adapter *pAd,
66 u8 *pAddr);
67
68#endif /* __AP_H__ */