mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2024-11-10 17:41:16 +00:00
mxm_wifiex: update to mxm5x17322.p3 release
Driver Bug Fixes: ----------------- 1. Added GPL/NXP dual license header 2. WCSWREL-242: Fixed system rebooted issue after connecting wifi and running bt A2DP stress 3. WCSWREL-310: merge the L5.17 build errors and warnings related to netif_rx 4. WCSWREL-317: merge the build error and warning fix related to eth_hw_addr_set 5. WSW-19664: Fixed VtsHalWifiV1_0TargetTest failure Signed-off-by: Sherry Sun <sherry.sun@nxp.com>
This commit is contained in:
parent
638d8eae2a
commit
c874a3d10c
93 changed files with 1892 additions and 1110 deletions
|
@ -1,19 +1,27 @@
|
|||
# File: Makefile
|
||||
#
|
||||
# Copyright 2008-2022 NXP
|
||||
# Copyright 2014-2022 NXP
|
||||
#
|
||||
# This software file (the File) is distributed by NXP
|
||||
# under the terms of the GNU General Public License Version 2, June 1991
|
||||
# (the License). You may use, redistribute and/or modify the File in
|
||||
# accordance with the terms and conditions of the License, a copy of which
|
||||
# is available by writing to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
# worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
# NXP CONFIDENTIAL
|
||||
# The source code contained or described herein and all documents related to
|
||||
# the source code (Materials) are owned by NXP, its
|
||||
# suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
# its suppliers and/or its licensors. The Materials contain
|
||||
# trade secrets and proprietary and confidential information of NXP, its
|
||||
# suppliers and/or its licensors. The Materials are protected by worldwide copyright
|
||||
# and trade secret laws and treaty provisions. No part of the Materials may be
|
||||
# used, copied, reproduced, modified, published, uploaded, posted,
|
||||
# transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
# express written permission.
|
||||
#
|
||||
# THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
# IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
# ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
# this warranty disclaimer.
|
||||
# No license under any patent, copyright, trade secret or other intellectual
|
||||
# property right is granted to or conferred upon you by disclosure or delivery
|
||||
# of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
# otherwise. Any license under such intellectual property rights must be
|
||||
# express and approved by NXP in writing.
|
||||
#
|
||||
# Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
#
|
||||
|
||||
CONFIG_COMPATDIR=n
|
||||
|
@ -581,11 +589,9 @@ endif
|
|||
|
||||
export CC LD ccflags-y KERNELDIR
|
||||
|
||||
.PHONY: mapp/mlanconfig mapp/mlanutl clean distclean
|
||||
.PHONY: mapp/mlanutl clean distclean
|
||||
@echo "Finished Making NXP Wlan Linux Driver"
|
||||
|
||||
mapp/mlanconfig:
|
||||
$(MAKE) -C $@
|
||||
mapp/mlanutl:
|
||||
$(MAKE) -C $@
|
||||
|
||||
|
@ -598,8 +604,9 @@ appsbuild:
|
|||
fi
|
||||
|
||||
cp -f README_MLAN $(BINDIR)
|
||||
cp -rf mapp/mlanconfig/config $(BINDIR)
|
||||
|
||||
ifneq ($(APPDIR),)
|
||||
$(MAKE) -C mapp/mlanconfig $@ INSTALLDIR=$(BINDIR)
|
||||
$(MAKE) -C mapp/mlanutl $@ INSTALLDIR=$(BINDIR)
|
||||
endif
|
||||
|
||||
|
@ -616,8 +623,9 @@ build: echo default
|
|||
cp -rpf script/unload $(BINDIR)/
|
||||
|
||||
cp -f README_MLAN $(BINDIR)
|
||||
cp -rf mapp/mlanconfig/config $(BINDIR)
|
||||
|
||||
ifneq ($(APPDIR),)
|
||||
$(MAKE) -C mapp/mlanconfig $@ INSTALLDIR=$(BINDIR)
|
||||
$(MAKE) -C mapp/mlanutl $@ INSTALLDIR=$(BINDIR)
|
||||
endif
|
||||
|
||||
|
@ -633,7 +641,6 @@ clean:
|
|||
-find . -name "*dwo" -exec rm {} \;
|
||||
-rm -rf .tmp_versions
|
||||
ifneq ($(APPDIR),)
|
||||
$(MAKE) -C mapp/mlanconfig $@
|
||||
$(MAKE) -C mapp/mlanutl $@
|
||||
endif
|
||||
#ifdef SDIO
|
||||
|
@ -663,7 +670,6 @@ distclean:
|
|||
-find . -name "*dwo" -exec rm {} \;
|
||||
-rm -rf .tmp_versions
|
||||
ifneq ($(APPDIR),)
|
||||
$(MAKE) -C mapp/mlanconfig $@
|
||||
$(MAKE) -C mapp/mlanutl $@
|
||||
endif
|
||||
|
||||
|
|
|
@ -1,46 +0,0 @@
|
|||
#
|
||||
# File : mlanconfig/Makefile
|
||||
#
|
||||
# Copyright 2008-2020 NXP
|
||||
|
||||
# Path to the top directory of the mlandriver distribution
|
||||
PATH_TO_TOP = ../..
|
||||
|
||||
# Determine how we should copy things to the install directory
|
||||
ABSPATH := $(filter /%, $(INSTALLDIR))
|
||||
RELPATH := $(filter-out /%, $(INSTALLDIR))
|
||||
INSTALLPATH := $(ABSPATH)
|
||||
ifeq ($(strip $(INSTALLPATH)),)
|
||||
INSTALLPATH := $(PATH_TO_TOP)/$(RELPATH)
|
||||
endif
|
||||
|
||||
# Override CFLAGS for application sources, remove __ kernel namespace defines
|
||||
CFLAGS := $(filter-out -D__%, $(ccflags-y))
|
||||
# remove KERNEL include dir
|
||||
CFLAGS := $(filter-out -I$(KERNELDIR)%, $(CFLAGS))
|
||||
|
||||
#
|
||||
# List of application executables to create
|
||||
#
|
||||
TARGETS := $(exectarget)
|
||||
|
||||
#
|
||||
# Make target rules
|
||||
#
|
||||
|
||||
# All rule compiles list of TARGETS using builtin program target from src rule
|
||||
all :
|
||||
$(exectarget): $(libobjs)
|
||||
$(CC) $(CFLAGS) $(libobjs) -o $(exectarget)
|
||||
|
||||
# Update any needed TARGETS and then copy to the install path
|
||||
build install: $(TARGETS)
|
||||
@cp -rf config $(INSTALLPATH)
|
||||
|
||||
clean:
|
||||
@rm -f $(exectarget)
|
||||
@rm -f *.o
|
||||
|
||||
distclean: clean
|
||||
@rm -f *~ core
|
||||
@rm -f tags
|
|
@ -2,21 +2,28 @@
|
|||
*
|
||||
* @brief Program to control parameters in the mlandriver
|
||||
*
|
||||
* Usage: mlanutl mlanX cmd [...]
|
||||
*
|
||||
*
|
||||
* Copyright 2011-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
*/
|
||||
/************************************************************************
|
||||
|
@ -3709,6 +3716,14 @@ int process_host_cmd_resp(char *cmd_name, t_u8 *buf)
|
|||
} else if (RobustCoexLteStat->ResponseType ==
|
||||
EXT_LTE_RESP_RSTSTAT) {
|
||||
printf("LTE STAT Counters cleared \n");
|
||||
} else // else print default cmdresp
|
||||
{
|
||||
printf("HOSTCMD_RESP: CmdCode=%#04x, Size=%#04x,"
|
||||
" SeqNum=%#04x, Result=%#04x\n",
|
||||
hostcmd->command, hostcmd->size,
|
||||
hostcmd->seq_num, hostcmd->result);
|
||||
hexdump("payload", (t_void *)(buf + S_DS_GEN),
|
||||
hostcmd->size - S_DS_GEN, ' ');
|
||||
}
|
||||
} break;
|
||||
default:
|
||||
|
|
|
@ -5,18 +5,23 @@
|
|||
*
|
||||
* Copyright 2011-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
*/
|
||||
/************************************************************************
|
||||
|
|
|
@ -2,21 +2,28 @@
|
|||
*
|
||||
* @brief 11mc/11az Wifi location services application
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
*
|
||||
* Copyright 2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
*/
|
||||
/************************************************************************
|
||||
|
|
|
@ -5,18 +5,23 @@
|
|||
*
|
||||
* Copyright 2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
*/
|
||||
/************************************************************************
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,22 +1,33 @@
|
|||
/** @file mlan_11ac.c
|
||||
*
|
||||
* @brief This file contains the functions for station ioctl.
|
||||
* @brief This file defines the private and adapter data
|
||||
* structures and declares global function prototypes used
|
||||
* in MLAN module.
|
||||
*
|
||||
*
|
||||
* Copyright 2011-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,22 +1,33 @@
|
|||
/** @file mlan_11ac.h
|
||||
*
|
||||
* @brief This file contains the functions for station ioctl.
|
||||
* @brief This file defines the private and adapter data
|
||||
* structures and declares global function prototypes used
|
||||
* in MLAN module.
|
||||
*
|
||||
*
|
||||
* Copyright 2011-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,22 +1,33 @@
|
|||
/** @file mlan_11ax.c
|
||||
*
|
||||
* @brief This file contains the functions for 11ax related features.
|
||||
* @brief This file defines the private and adapter data
|
||||
* structures and declares global function prototypes used
|
||||
* in MLAN module.
|
||||
*
|
||||
*
|
||||
* Copyright 2018-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,22 +1,33 @@
|
|||
/** @file mlan_11ax.h
|
||||
*
|
||||
* @brief This file contains the functions for station ioctl.
|
||||
* @brief This file defines the private and adapter data
|
||||
* structures and declares global function prototypes used
|
||||
* in MLAN module.
|
||||
*
|
||||
*
|
||||
* Copyright 2018-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
/********************************************************
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -8,18 +8,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -7,18 +7,27 @@
|
|||
*
|
||||
* Copyright 2009-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2009-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -24,7 +33,7 @@
|
|||
#define _MLAN_DECL_H_
|
||||
|
||||
/** MLAN release version */
|
||||
#define MLAN_RELEASE_VERSION "322"
|
||||
#define MLAN_RELEASE_VERSION "322.p3"
|
||||
|
||||
/** Re-define generic data types for MLAN/MOAL */
|
||||
/** Signed char (1-byte) */
|
||||
|
|
|
@ -7,18 +7,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -9,18 +9,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -10,18 +10,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -7,18 +7,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -14,18 +14,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -11,18 +11,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,23 +1,32 @@
|
|||
/**
|
||||
* @file mlan_misc.c
|
||||
*
|
||||
* @brief This file include miscellaneous functions for MLAN module
|
||||
* @brief This file include Miscellaneous functions for MLAN module
|
||||
*
|
||||
*
|
||||
* Copyright 2009-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -8,18 +8,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,23 +1,31 @@
|
|||
/** @file mlan_sdio.h
|
||||
*
|
||||
* @brief This file contains definitions for SDIO interface.
|
||||
* driver.
|
||||
*
|
||||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
/****************************************************
|
||||
|
|
|
@ -2,21 +2,60 @@
|
|||
*
|
||||
* @brief This file contains APIs to MOAL module.
|
||||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @mainpage MLAN Driver
|
||||
*
|
||||
* @section overview_sec Overview
|
||||
*
|
||||
* The MLAN is an OS independent WLAN driver for NXP 802.11
|
||||
* embedded chipset.
|
||||
*
|
||||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -7,18 +7,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2009-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2009-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2009-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2009-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2009-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -24,7 +33,7 @@
|
|||
#define _MLAN_DECL_H_
|
||||
|
||||
/** MLAN release version */
|
||||
#define MLAN_RELEASE_VERSION "322"
|
||||
#define MLAN_RELEASE_VERSION "322.p3"
|
||||
|
||||
/** Re-define generic data types for MLAN/MOAL */
|
||||
/** Signed char (1-byte) */
|
||||
|
|
|
@ -6,18 +6,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,27 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's
|
||||
* prior express written permission.
|
||||
*
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2011-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2011-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2015-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -772,14 +780,15 @@ static int woal_cfg80211_subcmd_get_supp_feature_set(struct wiphy *wiphy,
|
|||
#endif
|
||||
| WLAN_FEATURE_LINK_LAYER_STATS |
|
||||
WLAN_FEATURE_LOGGER | WLAN_FEATURE_RSSI_MONITOR |
|
||||
WLAN_FEATURE_CONFIG_NDO |
|
||||
WLAN_FEATURE_CONTROL_ROAMING |
|
||||
WLAN_FEATURE_SCAN_RAND | WLAN_FEATURE_MKEEP_ALIVE;
|
||||
WLAN_FEATURE_CONFIG_NDO | WLAN_FEATURE_SCAN_RAND |
|
||||
WLAN_FEATURE_MKEEP_ALIVE;
|
||||
|
||||
memset(&fw_info, 0, sizeof(mlan_fw_info));
|
||||
woal_request_get_fw_info(priv, MOAL_IOCTL_WAIT, &fw_info);
|
||||
if (fw_info.fw_bands & BAND_A)
|
||||
supp_feature_set |= WLAN_FEATURE_INFRA_5G;
|
||||
if (fw_info.fw_roaming_support)
|
||||
supp_feature_set |= WLAN_FEATURE_CONTROL_ROAMING;
|
||||
|
||||
reply_len = sizeof(supp_feature_set);
|
||||
/** Allocate skb for cmd reply*/
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2015-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -2,22 +2,30 @@
|
|||
/** @file moal_eth_ioctl.c
|
||||
*
|
||||
* @brief This file contains private ioctl functions
|
||||
|
||||
*
|
||||
*
|
||||
* Copyright 2014-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
/** @file moal_eth_ioctl.h
|
||||
*
|
||||
* @brief This file contains definition for private IOCTL call.
|
||||
|
@ -6,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,26 @@
|
|||
*
|
||||
* Copyright 2018-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
#include "moal_main.h"
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -765,8 +773,7 @@ static struct _card_info card_info_SD8987 = {
|
|||
|
||||
/** Driver version */
|
||||
char driver_version[] =
|
||||
INTF_CARDTYPE KERN_VERSION "--" MLAN_RELEASE_VERSION "-GPL"
|
||||
"-("
|
||||
INTF_CARDTYPE KERN_VERSION "--" MLAN_RELEASE_VERSION "-("
|
||||
"FP" FPNUM ")"
|
||||
#ifdef DEBUG_LEVEL2
|
||||
"-dbg"
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -4,20 +4,28 @@
|
|||
* driver.
|
||||
*
|
||||
*
|
||||
* Copyright 2014-2021 NXP
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
/** @file moal_priv.h
|
||||
*
|
||||
* @brief This file contains definition for extended private IOCTL call.
|
||||
|
@ -6,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,23 +1,30 @@
|
|||
/** @file moal_sdio.h
|
||||
*
|
||||
* @brief This file contains definitions for SDIO interface.
|
||||
* driver.
|
||||
*
|
||||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
/****************************************************
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/** @file moal_sdio_mmc.c
|
||||
/** @file moal_sdio.c
|
||||
*
|
||||
* @brief This file contains SDIO MMC IF (interface) module
|
||||
* related functions.
|
||||
|
@ -6,18 +6,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
/****************************************************
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -1617,14 +1625,15 @@ static mlan_status moal_recv_packet_to_mon_if(moal_handle *handle,
|
|||
handle->mon_if->stats.rx_bytes += skb->len;
|
||||
handle->mon_if->stats.rx_packets++;
|
||||
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 17, 0)
|
||||
netif_rx(skb);
|
||||
#else
|
||||
if (in_interrupt())
|
||||
netif_rx(skb);
|
||||
else
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 17, 0)
|
||||
netif_rx(skb);
|
||||
#else
|
||||
netif_rx_ni(skb);
|
||||
#endif
|
||||
|
||||
status = MLAN_STATUS_PENDING;
|
||||
}
|
||||
|
||||
|
|
|
@ -6,18 +6,26 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
/*************************************************************
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2011-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -3352,8 +3360,11 @@ static void woal_cfg80211_fill_rate_info(moal_private *priv,
|
|||
sinfo->txrate.mcs = rate->param.data_rate.tx_mcs_index;
|
||||
} else {
|
||||
/* Bit rate is in 500 kb/s units. Convert it to 100kb/s units */
|
||||
if (rate->param.data_rate.tx_data_rate < 12) {
|
||||
sinfo->txrate.legacy =
|
||||
Rates[rate->param.data_rate.tx_data_rate] * 5;
|
||||
} else
|
||||
sinfo->txrate.legacy = Rates[0] * 5;
|
||||
}
|
||||
// Fill Rx rate
|
||||
#if CFG80211_VERSION_CODE >= KERNEL_VERSION(4, 0, 0)
|
||||
|
@ -3396,8 +3407,11 @@ static void woal_cfg80211_fill_rate_info(moal_private *priv,
|
|||
sinfo->rxrate.mcs = rate->param.data_rate.rx_mcs_index;
|
||||
} else {
|
||||
/* Bit rate is in 500 kb/s units. Convert it to 100kb/s units */
|
||||
if (rate->param.data_rate.rx_data_rate < 12) {
|
||||
sinfo->rxrate.legacy =
|
||||
Rates[rate->param.data_rate.rx_data_rate] * 5;
|
||||
} else
|
||||
sinfo->rxrate.legacy = 0;
|
||||
}
|
||||
#endif
|
||||
done:
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2011-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,26 @@
|
|||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,22 +1,30 @@
|
|||
/** @file moal_uap.h
|
||||
*
|
||||
* @brief This file contains uap driver specific defines etc.
|
||||
* @brief This file contains wlan driver specific defines etc.
|
||||
*
|
||||
*
|
||||
* Copyright 2008-2022 NXP
|
||||
* Copyright 2009-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2011-2022 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2011-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,22 +1,30 @@
|
|||
/** @file moal_uap_priv.c
|
||||
*
|
||||
* @brief This file contains standard ioctl functions
|
||||
* @brief This file contains wireless extension standard ioctl functions
|
||||
*
|
||||
*
|
||||
* Copyright 2010-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,22 +1,30 @@
|
|||
/** @file moal_uap_priv.h
|
||||
*
|
||||
* @brief This file contains definition for extended private IOCTL call.
|
||||
* @brief This file contains wireless extension standard ioctl functions
|
||||
*
|
||||
*
|
||||
* Copyright 2010-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2010-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -6,18 +6,26 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,23 +1,30 @@
|
|||
/** @file moal_usb.h
|
||||
*
|
||||
* @brief This file contains definitions for USB interface.
|
||||
* driver.
|
||||
*
|
||||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
/*************************************************************
|
||||
|
|
|
@ -5,18 +5,26 @@
|
|||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,22 +1,30 @@
|
|||
/** @file moal_wext.h
|
||||
*
|
||||
* @brief This file contains definition for wireless extension IOCTL call.
|
||||
* @brief This file contains definition for extended private IOCTL call.
|
||||
*
|
||||
*
|
||||
* Copyright 2008-2021 NXP
|
||||
*
|
||||
* This software file (the File) is distributed by NXP
|
||||
* under the terms of the GNU General Public License Version 2, June 1991
|
||||
* (the License). You may use, redistribute and/or modify the File in
|
||||
* accordance with the terms and conditions of the License, a copy of which
|
||||
* is available by writing to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
||||
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
||||
* NXP CONFIDENTIAL
|
||||
* The source code contained or described herein and all documents related to
|
||||
* the source code (Materials) are owned by NXP, its
|
||||
* suppliers and/or its licensors. Title to the Materials remains with NXP,
|
||||
* its suppliers and/or its licensors. The Materials contain
|
||||
* trade secrets and proprietary and confidential information of NXP, its
|
||||
* suppliers and/or its licensors. The Materials are protected by worldwide
|
||||
* copyright and trade secret laws and treaty provisions. No part of the
|
||||
* Materials may be used, copied, reproduced, modified, published, uploaded,
|
||||
* posted, transmitted, distributed, or disclosed in any way without NXP's prior
|
||||
* express written permission.
|
||||
*
|
||||
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
||||
* this warranty disclaimer.
|
||||
* No license under any patent, copyright, trade secret or other intellectual
|
||||
* property right is granted to or conferred upon you by disclosure or delivery
|
||||
* of the Materials, either expressly, by implication, inducement, estoppel or
|
||||
* otherwise. Any license under such intellectual property rights must be
|
||||
* express and approved by NXP in writing.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of GPL v2.
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue