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

Commit 1588ccfb authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "cnss_utils: Add support of cnss_utils for WLAN"

parents 9a8f4167 a677a1d1
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