mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
d2b21f1917
Add initial support for libertas devices using a GSPI interface. This has been tested with the 8686. GSPI is intended to be used on embedded systems. Board-specific parameters are required (see libertas_spi.h). Thanks to everyone who took a look at the earlier versions of the patch. Signed-off-by: Colin McCabe <colin@cozybit.com> Signed-off-by: Andrey Yurovsky <andrey@cozybit.com> Acked-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
14 lines
450 B
Makefile
14 lines
450 B
Makefile
libertas-objs := main.o wext.o rx.o tx.o cmd.o cmdresp.o scan.o 11d.o \
|
|
debugfs.o persistcfg.o ethtool.o assoc.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_CS) += libertas_cs.o
|
|
obj-$(CONFIG_LIBERTAS_SDIO) += libertas_sdio.o
|
|
obj-$(CONFIG_LIBERTAS_SPI) += libertas_spi.o
|