brintos

brintos / linux-shallow public Read only

0
0
Text · 1.6 KiB · dc2b3b4 Raw
50 lines · plain
1#------------------------------------------------------------------------------2# Copyright (c) 2004-2011 Atheros Communications Inc.3# Copyright (c) 2011-2012 Qualcomm Atheros, Inc.4# All rights reserved.5#6#7#8# Permission to use, copy, modify, and/or distribute this software for any9# purpose with or without fee is hereby granted, provided that the above10# copyright notice and this permission notice appear in all copies.11#12# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES13# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF14# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR15# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES16# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN17# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF18# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.19#20#21#22# Author(s): ="Atheros"23#------------------------------------------------------------------------------24 25obj-$(CONFIG_ATH6KL) += ath6kl_core.o26ath6kl_core-y += debug.o27ath6kl_core-y += hif.o28ath6kl_core-y += htc_mbox.o29ath6kl_core-y += htc_pipe.o30ath6kl_core-y += bmi.o31ath6kl_core-y += cfg80211.o32ath6kl_core-y += init.o33ath6kl_core-y += main.o34ath6kl_core-y += txrx.o35ath6kl_core-y += wmi.o36ath6kl_core-y += core.o37ath6kl_core-y += recovery.o38 39ath6kl_core-$(CONFIG_NL80211_TESTMODE) += testmode.o40ath6kl_core-$(CONFIG_ATH6KL_TRACING) += trace.o41 42obj-$(CONFIG_ATH6KL_SDIO) += ath6kl_sdio.o43ath6kl_sdio-y += sdio.o44 45obj-$(CONFIG_ATH6KL_USB) += ath6kl_usb.o46ath6kl_usb-y += usb.o47 48# for tracing framework to find trace.h49CFLAGS_trace.o := -I$(src)50