Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a677a1d1 authored by Yuanyuan Liu's avatar Yuanyuan Liu
Browse files

cnss_utils: Add support of cnss_utils for WLAN



Add support of cnss_utils for WLAN. Export APIs to WLAN
host driver which are used to set/get WLAN related
information. These information could be retrived later
when WLAN driver is reloaded.

CRs-Fixed: 2060693
Change-Id: I2c8c36602ec8af133946ff00c41ce648a2628041
Signed-off-by: default avatarYuanyuan Liu <yuanliu@codeaurora.org>
parent 998e5be1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -345,5 +345,6 @@ source "drivers/net/wireless/cw1200/Kconfig"
source "drivers/net/wireless/rsi/Kconfig"
source "drivers/net/wireless/cnss/Kconfig"
source "drivers/net/wireless/cnss2/Kconfig"
source "drivers/net/wireless/cnss_utils/Kconfig"

endif # WLAN
+1 −0
Original line number Diff line number Diff line
@@ -67,3 +67,4 @@ obj-$(CONFIG_CNSS) += cnss/
obj-$(CONFIG_CNSS2)	+= cnss2/
obj-$(CONFIG_WCNSS_MEM_PRE_ALLOC) += cnss_prealloc/
obj-$(CONFIG_CNSS_CRYPTO)	+= cnss_crypto/
obj-$(CONFIG_CNSS_UTILS) += cnss_utils/
+1 −0
Original line number Diff line number Diff line
config CNSS
	tristate "CNSS driver for wifi module"
	select CNSS_UTILS
	select CRYPTO
	select CRYPTO_HASH
	select CRYPTO_BLKCIPHER
+1 −0
Original line number Diff line number Diff line
config CNSS2
	tristate "CNSS2 Platform Driver for Wi-Fi Module"
	select CNSS_UTILS
	depends on !CNSS && PCI_MSM
	---help---
	  This module adds the support for Connectivity Subsystem (CNSS) used
+6 −0
Original line number Diff line number Diff line
config CNSS_UTILS
	bool "CNSS utilities support"
	---help---
	  Add CNSS utilities support for the WLAN driver module.
	  This feature enable wlan driver to use CNSS utilities APIs to set
	  and get wlan related information.
 No newline at end of file
Loading