xref: /OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/mlan/mlan_module.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /** @file mlan_module.c
2  *
3  *  @brief This file declares the exported symbols from MLAN.
4  *
5  *
6  *  Copyright 2008-2021 NXP
7  *
8  *  This software file (the File) is distributed by NXP
9  *  under the terms of the GNU General Public License Version 2, June 1991
10  *  (the License).  You may use, redistribute and/or modify the File in
11  *  accordance with the terms and conditions of the License, a copy of which
12  *  is available by writing to the Free Software Foundation, Inc.,
13  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
14  *  worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
15  *
16  *  THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
17  *  IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
18  *  ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
19  *  this warranty disclaimer.
20  *
21  */
22 
23 /******************************************************
24 Change log:
25     12/08/2008: initial version
26 ******************************************************/
27 
28 #ifdef LINUX
29 #include <linux/module.h>
30 #include "mlan_decl.h"
31 #include "mlan_ioctl.h"
32 
33 EXPORT_SYMBOL(mlan_register);
34 EXPORT_SYMBOL(mlan_unregister);
35 EXPORT_SYMBOL(mlan_init_fw);
36 EXPORT_SYMBOL(mlan_set_init_param);
37 EXPORT_SYMBOL(mlan_dnld_fw);
38 EXPORT_SYMBOL(mlan_shutdown_fw);
39 #ifdef USB
40 EXPORT_SYMBOL(mlan_write_data_async_complete);
41 EXPORT_SYMBOL(mlan_recv);
42 #endif
43 EXPORT_SYMBOL(mlan_send_packet);
44 EXPORT_SYMBOL(mlan_ioctl);
45 EXPORT_SYMBOL(mlan_main_process);
46 EXPORT_SYMBOL(mlan_rx_process);
47 EXPORT_SYMBOL(mlan_select_wmm_queue);
48 EXPORT_SYMBOL(mlan_process_deaggr_pkt);
49 #if defined(SDIO) || defined(PCIE)
50 EXPORT_SYMBOL(mlan_interrupt);
51 #if defined(SYSKT)
52 EXPORT_SYMBOL(mlan_hs_callback);
53 #endif /* SYSKT_MULTI || SYSKT */
54 #endif /* SDIO || PCIE */
55 
56 EXPORT_SYMBOL(mlan_pm_wakeup_card);
57 EXPORT_SYMBOL(mlan_is_main_process_running);
58 #ifdef PCIE
59 EXPORT_SYMBOL(mlan_set_int_mode);
60 #endif
61 EXPORT_SYMBOL(mlan_disable_host_int);
62 EXPORT_SYMBOL(mlan_enable_host_int);
63 
64 MODULE_DESCRIPTION("M-WLAN MLAN Driver");
65 MODULE_AUTHOR("NXP");
66 MODULE_VERSION(MLAN_RELEASE_VERSION);
67 MODULE_LICENSE("GPL");
68 #endif /* LINUX */
69