mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-04 18:49:41 +00:00

Based on the normalized pattern: this software file (the file ) is distributed by nxp under the terms of the gnu general public license version 2 june 1991 (the license ) you may use redistribute and/or modify this file in accordance with the terms and conditions of the license a copy of which is available by writing to the free software foundation inc 51 franklin street fifth floor boston ma 02110-1301 usa or on the worldwide web at http://www gnu org/licenses/old-licenses/gpl-2 0 txt 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 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference. Reviewed-by: Allison Randal <allison@lohutok.net> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
48 lines
1011 B
Makefile
48 lines
1011 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright 2011-2020 NXP
|
|
#
|
|
|
|
|
|
mwifiex-y += main.o
|
|
mwifiex-y += init.o
|
|
mwifiex-y += cfp.o
|
|
mwifiex-y += cmdevt.o
|
|
mwifiex-y += util.o
|
|
mwifiex-y += txrx.o
|
|
mwifiex-y += wmm.o
|
|
mwifiex-y += 11n.o
|
|
mwifiex-y += 11ac.o
|
|
mwifiex-y += 11n_aggr.o
|
|
mwifiex-y += 11n_rxreorder.o
|
|
mwifiex-y += scan.o
|
|
mwifiex-y += join.o
|
|
mwifiex-y += sta_ioctl.o
|
|
mwifiex-y += sta_cmd.o
|
|
mwifiex-y += uap_cmd.o
|
|
mwifiex-y += ie.o
|
|
mwifiex-y += sta_cmdresp.o
|
|
mwifiex-y += sta_event.o
|
|
mwifiex-y += uap_event.o
|
|
mwifiex-y += sta_tx.o
|
|
mwifiex-y += sta_rx.o
|
|
mwifiex-y += uap_txrx.o
|
|
mwifiex-y += cfg80211.o
|
|
mwifiex-y += ethtool.o
|
|
mwifiex-y += 11h.o
|
|
mwifiex-y += tdls.o
|
|
mwifiex-$(CONFIG_DEBUG_FS) += debugfs.o
|
|
obj-$(CONFIG_MWIFIEX) += mwifiex.o
|
|
|
|
mwifiex_sdio-y += sdio.o
|
|
obj-$(CONFIG_MWIFIEX_SDIO) += mwifiex_sdio.o
|
|
|
|
mwifiex_pcie-y += pcie.o
|
|
mwifiex_pcie-y += pcie_quirks.o
|
|
obj-$(CONFIG_MWIFIEX_PCIE) += mwifiex_pcie.o
|
|
|
|
mwifiex_usb-y += usb.o
|
|
obj-$(CONFIG_MWIFIEX_USB) += mwifiex_usb.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN
|