mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	 2108df3c4b
			
		
	
	
		2108df3c4b
		
	
	
	
	
		
			
			With BT support, driver has to handle two streams of data (i.e. wlan and BT). Actual coex implementation is in firmware. Coex module just schedule the packets to firmware by taking them from the corresponding paths. Structures for module and protocol operations are introduced for this purpose. Protocol operations structure is global structure which can be shared among different modules. Move initialization of coex and operating mode values to rsi_91x_init(). Signed-off-by: Prameela Rani Garnepudi <prameela.j04cs@gmail.com> Signed-off-by: Siva Rebbagondla <siva.rebbagondla@redpinesignals.com> Signed-off-by: Amitkumar Karwar <amit.karwar@redpinesignals.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
		
			
				
	
	
		
			16 lines
		
	
	
		
			521 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			521 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0
 | |
| rsi_91x-y			+= rsi_91x_main.o
 | |
| rsi_91x-y			+= rsi_91x_core.o
 | |
| rsi_91x-y			+= rsi_91x_mac80211.o
 | |
| rsi_91x-y			+= rsi_91x_mgmt.o
 | |
| rsi_91x-y			+= rsi_91x_hal.o
 | |
| rsi_91x-y			+= rsi_91x_ps.o
 | |
| rsi_91x-$(CONFIG_RSI_COEX)	+= rsi_91x_coex.o
 | |
| rsi_91x-$(CONFIG_RSI_DEBUGFS)	+= rsi_91x_debugfs.o
 | |
| 
 | |
| rsi_usb-y			+= rsi_91x_usb.o rsi_91x_usb_ops.o
 | |
| rsi_sdio-y			+= rsi_91x_sdio.o rsi_91x_sdio_ops.o
 | |
| obj-$(CONFIG_RSI_91X) 		+= rsi_91x.o
 | |
| obj-$(CONFIG_RSI_SDIO)		+= rsi_sdio.o
 | |
| obj-$(CONFIG_RSI_USB)		+= rsi_usb.o
 |