xref: /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/mvl88w8977/mlan/esa/hostsa_init.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /** @file hostsa_init.h
2  *
3  *  @brief This file contains definitions the APIs.
4  *
5  * Copyright (C) 2014-2017, Marvell International Ltd.
6  *
7  * This software file (the "File") is distributed by Marvell International
8  * Ltd. under the terms of the GNU General Public License Version 2, June 1991
9  * (the "License").  You may use, redistribute and/or modify this File in
10  * accordance with the terms and conditions of the License, a copy of which
11  * is available by writing to the Free Software Foundation, Inc.,
12  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
13  * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
14  *
15  * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
17  * ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
18  * this warranty disclaimer.
19  */
20 
21 /******************************************************
22 Change log:
23     03/07/2014: Initial version
24 ******************************************************/
25 
26 #ifndef _HOSTSA_INIT_H_
27 #define _HOSTSA_INIT_H_
28 
29 #ifndef MACSTR
30 /** MAC address security format */
31 #define MACSTR "%02x:XX:XX:XX:%02x:%02x"
32 #endif
33 
34 #ifndef MAC2STR
35 /** MAC address security print arguments */
36 #define MAC2STR(a) (a)[0], (a)[4], (a)[5]
37 #endif
38 
39 extern mlan_status hostsa_init(pmlan_private pmpriv);
40 extern mlan_status hostsa_cleanup(pmlan_private pmpriv);
41 
42 #endif /* _MPL_MAIN_H_ */
43