mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 18:36:44 +07:00
5e3dd157d7
Here's a new mac80211 driver for Qualcomm Atheros 802.11ac QCA98xx devices. A major difference from ath9k is that there's now a firmware and that's why we had to implement a new driver. The wiki page for the driver is: http://wireless.kernel.org/en/users/Drivers/ath10k The driver has had many authors, they are listed here alphabetically: Bartosz Markowski <bartosz.markowski@tieto.com> Janusz Dziedzic <janusz.dziedzic@tieto.com> Kalle Valo <kvalo@qca.qualcomm.com> Marek Kwaczynski <marek.kwaczynski@tieto.com> Marek Puzyniak <marek.puzyniak@tieto.com> Michal Kazior <michal.kazior@tieto.com> Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
18 lines
389 B
Makefile
18 lines
389 B
Makefile
obj-$(CONFIG_ATH5K) += ath5k/
|
|
obj-$(CONFIG_ATH9K_HW) += ath9k/
|
|
obj-$(CONFIG_CARL9170) += carl9170/
|
|
obj-$(CONFIG_ATH6KL) += ath6kl/
|
|
obj-$(CONFIG_AR5523) += ar5523/
|
|
obj-$(CONFIG_WIL6210) += wil6210/
|
|
obj-$(CONFIG_ATH10K) += ath10k/
|
|
|
|
obj-$(CONFIG_ATH_COMMON) += ath.o
|
|
|
|
ath-objs := main.o \
|
|
regd.o \
|
|
hw.o \
|
|
key.o
|
|
|
|
ath-$(CONFIG_ATH_DEBUG) += debug.o
|
|
ccflags-y += -D__CHECK_ENDIAN__
|