diff options
author | Colin McCabe <colin@cozybit.com> | 2009-01-09 17:58:09 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:00:19 -0500 |
commit | d2b21f191753abd12c4063776cb1a3d635397509 (patch) | |
tree | a31c00ffff1cc05e5ec00a048e3de4e0dc3f54be /drivers/net/wireless/libertas/Makefile | |
parent | 3cd08b383b2efe163272045afc415c75afc9e9c5 (diff) |
libertas: if_spi, driver for libertas GSPI devices
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>
Diffstat (limited to 'drivers/net/wireless/libertas/Makefile')
-rw-r--r-- | drivers/net/wireless/libertas/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/libertas/Makefile b/drivers/net/wireless/libertas/Makefile index 02080a3682a9..0b6918584503 100644 --- a/drivers/net/wireless/libertas/Makefile +++ b/drivers/net/wireless/libertas/Makefile | |||
@@ -4,8 +4,10 @@ libertas-objs := main.o wext.o rx.o tx.o cmd.o cmdresp.o scan.o 11d.o \ | |||
4 | usb8xxx-objs += if_usb.o | 4 | usb8xxx-objs += if_usb.o |
5 | libertas_cs-objs += if_cs.o | 5 | libertas_cs-objs += if_cs.o |
6 | libertas_sdio-objs += if_sdio.o | 6 | libertas_sdio-objs += if_sdio.o |
7 | libertas_spi-objs += if_spi.o | ||
7 | 8 | ||
8 | obj-$(CONFIG_LIBERTAS) += libertas.o | 9 | obj-$(CONFIG_LIBERTAS) += libertas.o |
9 | obj-$(CONFIG_LIBERTAS_USB) += usb8xxx.o | 10 | obj-$(CONFIG_LIBERTAS_USB) += usb8xxx.o |
10 | obj-$(CONFIG_LIBERTAS_CS) += libertas_cs.o | 11 | obj-$(CONFIG_LIBERTAS_CS) += libertas_cs.o |
11 | obj-$(CONFIG_LIBERTAS_SDIO) += libertas_sdio.o | 12 | obj-$(CONFIG_LIBERTAS_SDIO) += libertas_sdio.o |
13 | obj-$(CONFIG_LIBERTAS_SPI) += libertas_spi.o | ||