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