mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-02 16:44:59 +00:00

With all the other PCMCIA WLAN adapters gone from the kernel, this is now the last remaining device with this interface, but as far as I can tell, all the actual libertas users were actually using either SDIO or USB. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Kalle Valo <kvalo@kernel.org>
22 lines
564 B
Makefile
22 lines
564 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
libertas-y += cfg.o
|
|
libertas-y += cmd.o
|
|
libertas-y += cmdresp.o
|
|
libertas-y += debugfs.o
|
|
libertas-y += ethtool.o
|
|
libertas-y += main.o
|
|
libertas-y += rx.o
|
|
libertas-y += tx.o
|
|
libertas-y += firmware.o
|
|
libertas-$(CONFIG_LIBERTAS_MESH) += mesh.o
|
|
|
|
usb8xxx-objs += if_usb.o
|
|
libertas_cs-objs += if_cs.o
|
|
libertas_sdio-objs += if_sdio.o
|
|
libertas_spi-objs += if_spi.o
|
|
|
|
obj-$(CONFIG_LIBERTAS) += libertas.o
|
|
obj-$(CONFIG_LIBERTAS_USB) += usb8xxx.o
|
|
obj-$(CONFIG_LIBERTAS_SDIO) += libertas_sdio.o
|
|
obj-$(CONFIG_LIBERTAS_SPI) += libertas_spi.o
|