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:
Sherry Sun 2022-05-27 14:35:54 +08:00
parent f6055d3fc2
commit 31800f43a6
93 changed files with 1892 additions and 1110 deletions

View File

@ -1,19 +1,27 @@
# File: Makefile # File: Makefile
# #
# Copyright 2008-2022 NXP # Copyright 2014-2022 NXP
# #
# This software file (the File) is distributed by NXP # NXP CONFIDENTIAL
# under the terms of the GNU General Public License Version 2, June 1991 # The source code contained or described herein and all documents related to
# (the License). You may use, redistribute and/or modify the File in # the source code (Materials) are owned by NXP, its
# accordance with the terms and conditions of the License, a copy of which # suppliers and/or its licensors. Title to the Materials remains with NXP,
# is available by writing to the Free Software Foundation, Inc., # its suppliers and/or its licensors. The Materials contain
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the # trade secrets and proprietary and confidential information of NXP, its
# worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. # 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 # No license under any patent, copyright, trade secret or other intellectual
# IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE # property right is granted to or conferred upon you by disclosure or delivery
# ARE EXPRESSLY DISCLAIMED. The License provides additional details about # of the Materials, either expressly, by implication, inducement, estoppel or
# this warranty disclaimer. # 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 CONFIG_COMPATDIR=n
@ -581,11 +589,9 @@ endif
export CC LD ccflags-y KERNELDIR 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" @echo "Finished Making NXP Wlan Linux Driver"
mapp/mlanconfig:
$(MAKE) -C $@
mapp/mlanutl: mapp/mlanutl:
$(MAKE) -C $@ $(MAKE) -C $@
@ -598,8 +604,9 @@ appsbuild:
fi fi
cp -f README_MLAN $(BINDIR) cp -f README_MLAN $(BINDIR)
cp -rf mapp/mlanconfig/config $(BINDIR)
ifneq ($(APPDIR),) ifneq ($(APPDIR),)
$(MAKE) -C mapp/mlanconfig $@ INSTALLDIR=$(BINDIR)
$(MAKE) -C mapp/mlanutl $@ INSTALLDIR=$(BINDIR) $(MAKE) -C mapp/mlanutl $@ INSTALLDIR=$(BINDIR)
endif endif
@ -616,8 +623,9 @@ build: echo default
cp -rpf script/unload $(BINDIR)/ cp -rpf script/unload $(BINDIR)/
cp -f README_MLAN $(BINDIR) cp -f README_MLAN $(BINDIR)
cp -rf mapp/mlanconfig/config $(BINDIR)
ifneq ($(APPDIR),) ifneq ($(APPDIR),)
$(MAKE) -C mapp/mlanconfig $@ INSTALLDIR=$(BINDIR)
$(MAKE) -C mapp/mlanutl $@ INSTALLDIR=$(BINDIR) $(MAKE) -C mapp/mlanutl $@ INSTALLDIR=$(BINDIR)
endif endif
@ -633,7 +641,6 @@ clean:
-find . -name "*dwo" -exec rm {} \; -find . -name "*dwo" -exec rm {} \;
-rm -rf .tmp_versions -rm -rf .tmp_versions
ifneq ($(APPDIR),) ifneq ($(APPDIR),)
$(MAKE) -C mapp/mlanconfig $@
$(MAKE) -C mapp/mlanutl $@ $(MAKE) -C mapp/mlanutl $@
endif endif
#ifdef SDIO #ifdef SDIO
@ -663,7 +670,6 @@ distclean:
-find . -name "*dwo" -exec rm {} \; -find . -name "*dwo" -exec rm {} \;
-rm -rf .tmp_versions -rm -rf .tmp_versions
ifneq ($(APPDIR),) ifneq ($(APPDIR),)
$(MAKE) -C mapp/mlanconfig $@
$(MAKE) -C mapp/mlanutl $@ $(MAKE) -C mapp/mlanutl $@
endif endif

View File

@ -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

View File

@ -2,21 +2,28 @@
* *
* @brief Program to control parameters in the mlandriver * @brief Program to control parameters in the mlandriver
* *
* Usage: mlanutl mlanX cmd [...]
*
* *
* Copyright 2011-2022 NXP * Copyright 2011-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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 == } else if (RobustCoexLteStat->ResponseType ==
EXT_LTE_RESP_RSTSTAT) { EXT_LTE_RESP_RSTSTAT) {
printf("LTE STAT Counters cleared \n"); 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; } break;
default: default:

View File

@ -5,18 +5,23 @@
* *
* Copyright 2011-2022 NXP * Copyright 2011-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * otherwise. Any license under such intellectual property rights must be
* express and approved by NXP in writing.
* *
*/ */
/************************************************************************ /************************************************************************

View File

@ -2,21 +2,28 @@
* *
* @brief 11mc/11az Wifi location services application * @brief 11mc/11az Wifi location services application
* *
* Usage:
*
* *
* Copyright 2022 NXP * Copyright 2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * otherwise. Any license under such intellectual property rights must be
* express and approved by NXP in writing.
* *
*/ */
/************************************************************************ /************************************************************************

View File

@ -5,18 +5,23 @@
* *
* Copyright 2022 NXP * Copyright 2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * otherwise. Any license under such intellectual property rights must be
* express and approved by NXP in writing.
* *
*/ */
/************************************************************************ /************************************************************************

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -1,22 +1,33 @@
/** @file mlan_11ac.c /** @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 * Copyright 2011-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -1,22 +1,33 @@
/** @file mlan_11ac.h /** @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 * Copyright 2011-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -1,22 +1,33 @@
/** @file mlan_11ax.c /** @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 * Copyright 2018-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -1,22 +1,33 @@
/** @file mlan_11ax.h /** @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 * Copyright 2018-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */
/******************************************************** /********************************************************

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -8,18 +8,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -7,18 +7,27 @@
* *
* Copyright 2009-2022 NXP * Copyright 2009-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2009-2022 NXP * Copyright 2009-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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_ #define _MLAN_DECL_H_
/** MLAN release version */ /** MLAN release version */
#define MLAN_RELEASE_VERSION "322" #define MLAN_RELEASE_VERSION "322.p3"
/** Re-define generic data types for MLAN/MOAL */ /** Re-define generic data types for MLAN/MOAL */
/** Signed char (1-byte) */ /** Signed char (1-byte) */

View File

@ -7,18 +7,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -9,18 +9,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -10,18 +10,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -7,18 +7,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -14,18 +14,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -11,18 +11,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -1,23 +1,32 @@
/** /**
* @file mlan_misc.c * @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 * Copyright 2009-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -8,18 +8,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -1,23 +1,31 @@
/** @file mlan_sdio.h /** @file mlan_sdio.h
* *
* @brief This file contains definitions for SDIO interface. * @brief This file contains definitions for SDIO interface.
* driver.
* *
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */
/**************************************************** /****************************************************

View File

@ -2,21 +2,60 @@
* *
* @brief This file contains APIs to MOAL module. * @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 * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * otherwise. Any license under such intellectual property rights must be
* express and approved by NXP in writing.
* *
*/ */

View File

@ -7,18 +7,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2009-2021 NXP * Copyright 2009-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2009-2021 NXP * Copyright 2009-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2009-2022 NXP * Copyright 2009-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2009-2022 NXP * Copyright 2009-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2009-2021 NXP * Copyright 2009-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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_ #define _MLAN_DECL_H_
/** MLAN release version */ /** MLAN release version */
#define MLAN_RELEASE_VERSION "322" #define MLAN_RELEASE_VERSION "322.p3"
/** Re-define generic data types for MLAN/MOAL */ /** Re-define generic data types for MLAN/MOAL */
/** Signed char (1-byte) */ /** Signed char (1-byte) */

View File

@ -6,18 +6,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,27 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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.
* *
*/ */

View File

@ -5,18 +5,26 @@
* *
* Copyright 2011-2022 NXP * Copyright 2011-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -5,18 +5,26 @@
* *
* Copyright 2011-2022 NXP * Copyright 2011-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -5,18 +5,26 @@
* *
* Copyright 2015-2022 NXP * Copyright 2015-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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 #endif
| WLAN_FEATURE_LINK_LAYER_STATS | | WLAN_FEATURE_LINK_LAYER_STATS |
WLAN_FEATURE_LOGGER | WLAN_FEATURE_RSSI_MONITOR | WLAN_FEATURE_LOGGER | WLAN_FEATURE_RSSI_MONITOR |
WLAN_FEATURE_CONFIG_NDO | WLAN_FEATURE_CONFIG_NDO | WLAN_FEATURE_SCAN_RAND |
WLAN_FEATURE_CONTROL_ROAMING | WLAN_FEATURE_MKEEP_ALIVE;
WLAN_FEATURE_SCAN_RAND | WLAN_FEATURE_MKEEP_ALIVE;
memset(&fw_info, 0, sizeof(mlan_fw_info)); memset(&fw_info, 0, sizeof(mlan_fw_info));
woal_request_get_fw_info(priv, MOAL_IOCTL_WAIT, &fw_info); woal_request_get_fw_info(priv, MOAL_IOCTL_WAIT, &fw_info);
if (fw_info.fw_bands & BAND_A) if (fw_info.fw_bands & BAND_A)
supp_feature_set |= WLAN_FEATURE_INFRA_5G; 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); reply_len = sizeof(supp_feature_set);
/** Allocate skb for cmd reply*/ /** Allocate skb for cmd reply*/

View File

@ -5,18 +5,26 @@
* *
* Copyright 2015-2021 NXP * Copyright 2015-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -5,18 +5,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,25 +1,33 @@
/** @file moal_eth_ioctl.c /** @file moal_eth_ioctl.c
* *
* @brief This file contains private ioctl functions * @brief This file contains private ioctl functions
*
* *
* Copyright 2014-2022 NXP * Copyright 2014-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * suppliers and/or its licensors. The Materials are protected by worldwide
* * copyright and trade secret laws and treaty provisions. No part of the
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE * Materials may be used, copied, reproduced, modified, published, uploaded,
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * posted, transmitted, distributed, or disclosed in any way without NXP's prior
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * express written permission.
* 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
*
*/
/************************************************************************ /************************************************************************
Change log: Change log:

View File

@ -1,4 +1,3 @@
/** @file moal_eth_ioctl.h /** @file moal_eth_ioctl.h
* *
* @brief This file contains definition for private IOCTL call. * @brief This file contains definition for private IOCTL call.
@ -6,18 +5,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -6,18 +6,26 @@
* *
* Copyright 2018-2022 NXP * Copyright 2018-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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" #include "moal_main.h"

View File

@ -5,18 +5,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -6,18 +6,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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 */ /** Driver version */
char driver_version[] = char driver_version[] =
INTF_CARDTYPE KERN_VERSION "--" MLAN_RELEASE_VERSION "-GPL" INTF_CARDTYPE KERN_VERSION "--" MLAN_RELEASE_VERSION "-("
"-("
"FP" FPNUM ")" "FP" FPNUM ")"
#ifdef DEBUG_LEVEL2 #ifdef DEBUG_LEVEL2
"-dbg" "-dbg"

View File

@ -5,18 +5,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -6,18 +6,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -4,20 +4,28 @@
* driver. * driver.
* *
* *
* Copyright 2014-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -5,18 +5,26 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,4 +1,3 @@
/** @file moal_priv.h /** @file moal_priv.h
* *
* @brief This file contains definition for extended private IOCTL call. * @brief This file contains definition for extended private IOCTL call.
@ -6,18 +5,26 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,22 +1,30 @@
/** @file moal_proc.c /** @file moal_proc.c
* *
* @brief This file contains functions for proc file. * @brief This file contains functions for proc file.
* *
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,23 +1,30 @@
/** @file moal_sdio.h /** @file moal_sdio.h
* *
* @brief This file contains definitions for SDIO interface. * @brief This file contains definitions for SDIO interface.
* driver.
* *
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */
/**************************************************** /****************************************************

View File

@ -1,4 +1,4 @@
/** @file moal_sdio_mmc.c /** @file moal_sdio.c
* *
* @brief This file contains SDIO MMC IF (interface) module * @brief This file contains SDIO MMC IF (interface) module
* related functions. * related functions.
@ -6,18 +6,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */
/**************************************************** /****************************************************

View File

@ -5,18 +5,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */
@ -1600,14 +1608,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_bytes += skb->len;
handle->mon_if->stats.rx_packets++; handle->mon_if->stats.rx_packets++;
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 17, 0)
netif_rx(skb);
#else
if (in_interrupt()) if (in_interrupt())
netif_rx(skb); netif_rx(skb);
else else
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 17, 0)
netif_rx(skb);
#else
netif_rx_ni(skb); netif_rx_ni(skb);
#endif #endif
status = MLAN_STATUS_PENDING; status = MLAN_STATUS_PENDING;
} }

View File

@ -6,18 +6,26 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */
/************************************************************* /*************************************************************

View File

@ -5,18 +5,26 @@
* *
* Copyright 2011-2022 NXP * Copyright 2011-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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; sinfo->txrate.mcs = rate->param.data_rate.tx_mcs_index;
} else { } else {
/* Bit rate is in 500 kb/s units. Convert it to 100kb/s units */ /* Bit rate is in 500 kb/s units. Convert it to 100kb/s units */
sinfo->txrate.legacy = if (rate->param.data_rate.tx_data_rate < 12) {
Rates[rate->param.data_rate.tx_data_rate] * 5; sinfo->txrate.legacy =
Rates[rate->param.data_rate.tx_data_rate] * 5;
} else
sinfo->txrate.legacy = Rates[0] * 5;
} }
// Fill Rx rate // Fill Rx rate
#if CFG80211_VERSION_CODE >= KERNEL_VERSION(4, 0, 0) #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; sinfo->rxrate.mcs = rate->param.data_rate.rx_mcs_index;
} else { } else {
/* Bit rate is in 500 kb/s units. Convert it to 100kb/s units */ /* Bit rate is in 500 kb/s units. Convert it to 100kb/s units */
sinfo->rxrate.legacy = if (rate->param.data_rate.rx_data_rate < 12) {
Rates[rate->param.data_rate.rx_data_rate] * 5; sinfo->rxrate.legacy =
Rates[rate->param.data_rate.rx_data_rate] * 5;
} else
sinfo->rxrate.legacy = 0;
} }
#endif #endif
done: done:

View File

@ -5,18 +5,26 @@
* *
* Copyright 2011-2021 NXP * Copyright 2011-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -6,18 +6,26 @@
* *
* Copyright 2008-2022 NXP * Copyright 2008-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,22 +1,30 @@
/** @file moal_uap.h /** @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 * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -5,18 +5,26 @@
* *
* Copyright 2011-2022 NXP * Copyright 2011-2022 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -5,18 +5,26 @@
* *
* Copyright 2011-2021 NXP * Copyright 2011-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,22 +1,30 @@
/** @file moal_uap_priv.c /** @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 * Copyright 2010-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,22 +1,30 @@
/** @file moal_uap_priv.h /** @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 * Copyright 2010-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -5,18 +5,26 @@
* *
* Copyright 2010-2021 NXP * Copyright 2010-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -6,18 +6,26 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,23 +1,30 @@
/** @file moal_usb.h /** @file moal_usb.h
* *
* @brief This file contains definitions for USB interface. * @brief This file contains definitions for USB interface.
* driver.
* *
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */
/************************************************************* /*************************************************************

View File

@ -5,18 +5,26 @@
* *
* Copyright 2008-2021 NXP * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */

View File

@ -1,22 +1,30 @@
/** @file moal_wext.h /** @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 * Copyright 2008-2021 NXP
* *
* This software file (the File) is distributed by NXP * NXP CONFIDENTIAL
* under the terms of the GNU General Public License Version 2, June 1991 * The source code contained or described herein and all documents related to
* (the License). You may use, redistribute and/or modify the File in * the source code (Materials) are owned by NXP, its
* accordance with the terms and conditions of the License, a copy of which * suppliers and/or its licensors. Title to the Materials remains with NXP,
* is available by writing to the Free Software Foundation, Inc., * its suppliers and/or its licensors. The Materials contain
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the * trade secrets and proprietary and confidential information of NXP, its
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * 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 * No license under any patent, copyright, trade secret or other intellectual
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE * property right is granted to or conferred upon you by disclosure or delivery
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about * of the Materials, either expressly, by implication, inducement, estoppel or
* this warranty disclaimer. * 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
* *
*/ */