mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-27 03:40:14 +07:00
457fb0415a
Now that the scan results are reported directly to the cfg80211 BSS table there is no need for maintaining this internal node table implementation for scan results. Remove the definitions and node table functions. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
38 lines
1.3 KiB
Makefile
38 lines
1.3 KiB
Makefile
#------------------------------------------------------------------------------
|
|
# Copyright (c) 2004-2010 Atheros Communications Inc.
|
|
# All rights reserved.
|
|
#
|
|
#
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
#
|
|
#
|
|
#
|
|
# Author(s): ="Atheros"
|
|
#------------------------------------------------------------------------------
|
|
|
|
obj-$(CONFIG_ATH6KL) := ath6kl.o
|
|
ath6kl-y += debug.o
|
|
ath6kl-y += htc_hif.o
|
|
ath6kl-y += htc.o
|
|
ath6kl-y += bmi.o
|
|
ath6kl-y += cfg80211.o
|
|
ath6kl-y += init.o
|
|
ath6kl-y += main.o
|
|
ath6kl-y += txrx.o
|
|
ath6kl-y += wmi.o
|
|
ath6kl-y += sdio.o
|
|
ath6kl-$(CONFIG_NL80211_TESTMODE) += testmode.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|