 363907af85
			
		
	
	
	363907af85
	
	
	
		
			
			This is the bluetooth protocol driver for the TI WiLink7 chipsets. Texas Instrument's WiLink chipsets combine wireless technologies like BT, FM, GPS and WLAN onto a single chip. This Bluetooth driver works on top of the TI_ST shared transport line discipline driver which also allows other drivers like FM V4L2 and GPS character driver to make use of the same UART interface. Kconfig and Makefile modifications to enable the Bluetooth driver for Texas Instrument's WiLink 7 chipset. Signed-off-by: Pavan Savoy <pavan_savoy@ti.com> Acked-by: Gustavo F. Padovan <padovan@profusion.mobi> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			977 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			977 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Makefile for the Linux Bluetooth HCI device drivers.
 | |
| #
 | |
| 
 | |
| obj-$(CONFIG_BT_HCIVHCI)	+= hci_vhci.o
 | |
| obj-$(CONFIG_BT_HCIUART)	+= hci_uart.o
 | |
| obj-$(CONFIG_BT_HCIBCM203X)	+= bcm203x.o
 | |
| obj-$(CONFIG_BT_HCIBPA10X)	+= bpa10x.o
 | |
| obj-$(CONFIG_BT_HCIBFUSB)	+= bfusb.o
 | |
| obj-$(CONFIG_BT_HCIDTL1)	+= dtl1_cs.o
 | |
| obj-$(CONFIG_BT_HCIBT3C)	+= bt3c_cs.o
 | |
| obj-$(CONFIG_BT_HCIBLUECARD)	+= bluecard_cs.o
 | |
| obj-$(CONFIG_BT_HCIBTUART)	+= btuart_cs.o
 | |
| 
 | |
| obj-$(CONFIG_BT_HCIBTUSB)	+= btusb.o
 | |
| obj-$(CONFIG_BT_HCIBTSDIO)	+= btsdio.o
 | |
| 
 | |
| obj-$(CONFIG_BT_ATH3K)		+= ath3k.o
 | |
| obj-$(CONFIG_BT_MRVL)		+= btmrvl.o
 | |
| obj-$(CONFIG_BT_MRVL_SDIO)	+= btmrvl_sdio.o
 | |
| obj-$(CONFIG_BT_WILINK)		+= btwilink.o
 | |
| 
 | |
| btmrvl-y			:= btmrvl_main.o
 | |
| btmrvl-$(CONFIG_DEBUG_FS)	+= btmrvl_debugfs.o
 | |
| 
 | |
| hci_uart-y				:= hci_ldisc.o
 | |
| hci_uart-$(CONFIG_BT_HCIUART_H4)	+= hci_h4.o
 | |
| hci_uart-$(CONFIG_BT_HCIUART_BCSP)	+= hci_bcsp.o
 | |
| hci_uart-$(CONFIG_BT_HCIUART_LL)	+= hci_ll.o
 | |
| hci_uart-$(CONFIG_BT_HCIUART_ATH3K)	+= hci_ath.o
 | |
| hci_uart-objs				:= $(hci_uart-y)
 |