mirror of
https://github.com/torvalds/linux.git
synced 2024-12-16 08:02:17 +00:00
0e5d3ab532
This reverts commit 093ec3c533
.
AHB bus code has been removed, since we did not have support Atheros
AR231x SoC, required for building the AHB version of ath5k. Now that
support WiSoC chips added we can restore functionality back.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Acked-by: John W. Linville <linville@tuxdriver.com>
Cc: Jiri Slaby <jirislaby@gmail.com>
Cc: Nick Kossifidis <mickflemm@gmail.com>
Cc: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Cc: linux-wireless@vger.kernel.org
Cc: ath5k-devel@lists.ath5k.org
Cc: Linux MIPS <linux-mips@linux-mips.org>
Patchwork: https://patchwork.linux-mips.org/patch/8247/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
23 lines
540 B
Makefile
23 lines
540 B
Makefile
ath5k-y += caps.o
|
|
ath5k-y += initvals.o
|
|
ath5k-y += eeprom.o
|
|
ath5k-y += gpio.o
|
|
ath5k-y += desc.o
|
|
ath5k-y += dma.o
|
|
ath5k-y += qcu.o
|
|
ath5k-y += pcu.o
|
|
ath5k-y += phy.o
|
|
ath5k-y += reset.o
|
|
ath5k-y += attach.o
|
|
ath5k-y += base.o
|
|
CFLAGS_base.o += -I$(src)
|
|
ath5k-y += led.o
|
|
ath5k-y += rfkill.o
|
|
ath5k-y += ani.o
|
|
ath5k-y += sysfs.o
|
|
ath5k-y += mac80211-ops.o
|
|
ath5k-$(CONFIG_ATH5K_DEBUG) += debug.o
|
|
ath5k-$(CONFIG_ATH5K_AHB) += ahb.o
|
|
ath5k-$(CONFIG_ATH5K_PCI) += pci.o
|
|
obj-$(CONFIG_ATH5K) += ath5k.o
|