ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / net / wireless / prism54 / oid_mgt.h
1 /*   
2  *  Copyright (C) 2003 Aurelien Alleaume <slts@free.fr>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License
7  *
8  *  This program is distributed in the hope that it will be useful,
9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *  GNU General Public License for more details.
12  *
13  *  You should have received a copy of the GNU General Public License
14  *  along with this program; if not, write to the Free Software
15  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16  *
17  */
18
19 #if !defined(_OID_MGT_H)
20 #define _OID_MGT_H
21
22 #include "isl_oid.h"
23 #include "islpci_dev.h"
24
25 extern struct oid_t isl_oid[];
26
27 int mgt_init(islpci_private *);
28
29 void mgt_clean(islpci_private *);
30
31 extern const int frequency_list_bg[];
32
33 extern const int frequency_list_a[];
34
35 int mgt_set_request(islpci_private *, enum oid_num_t, int, void *);
36
37 int mgt_get_request(islpci_private *, enum oid_num_t, int, void *,
38                     union oid_res_t *);
39
40 int mgt_commit_list(islpci_private *, enum oid_num_t *, int);
41
42 void mgt_set(islpci_private *, enum oid_num_t, void *);
43
44 void mgt_commit(islpci_private *);
45
46 int mgt_mlme_answer(islpci_private *);
47
48 enum oid_num_t mgt_oidtonum(u32 oid);
49
50 #endif                          /* !defined(_OID_MGT_H) */
51 /* EOF */