xref: /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/mvl88w8977/mlan/mlan_module.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /** @file mlan_module.c
2  *
3  *  @brief This file declares the exported symbols from MLAN.
4  *
5  *  Copyright (C) 2008-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     12/08/2008: initial version
24 ******************************************************/
25 
26 #ifdef LINUX
27 #include <linux/module.h>
28 #include "mlan_decl.h"
29 #include "mlan_ioctl.h"
30 
31 EXPORT_SYMBOL(mlan_register);
32 EXPORT_SYMBOL(mlan_unregister);
33 EXPORT_SYMBOL(mlan_init_fw);
34 EXPORT_SYMBOL(mlan_set_init_param);
35 EXPORT_SYMBOL(mlan_dnld_fw);
36 EXPORT_SYMBOL(mlan_shutdown_fw);
37 EXPORT_SYMBOL(mlan_send_packet);
38 EXPORT_SYMBOL(mlan_ioctl);
39 EXPORT_SYMBOL(mlan_main_process);
40 EXPORT_SYMBOL(mlan_rx_process);
41 EXPORT_SYMBOL(mlan_select_wmm_queue);
42 EXPORT_SYMBOL(mlan_interrupt);
43 #if defined(SYSKT)
44 EXPORT_SYMBOL(mlan_hs_callback);
45 #endif /* SYSKT_MULTI || SYSKT */
46 
47 EXPORT_SYMBOL(mlan_pm_wakeup_card);
48 EXPORT_SYMBOL(mlan_is_main_process_running);
49 
50 MODULE_DESCRIPTION("M-WLAN MLAN Driver");
51 MODULE_AUTHOR("Marvell International Ltd.");
52 MODULE_VERSION(MLAN_RELEASE_VERSION);
53 MODULE_LICENSE("GPL");
54 #endif /* LINUX */
55