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

Commit 6cc9b386 authored by Yuanyuan Liu's avatar Yuanyuan Liu
Browse files

net: cnss_utils: Add snapshot of cnss_utils driver



This is a snapshot of cnss_utils driver and associated files as of
msm-4.14 commit bea9b04a157b
("cnss_utils: Add support for derived MAC address").

Checkpatch issues are also fixed on top of this commit.

CRs-Fixed: 2375545
Change-Id: Ic2b2824ccf642f6becb9569c42b58178300de320
Signed-off-by: default avatarYuanyuan Liu <yuanliu@codeaurora.org>
parent d5ec14ca
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -122,5 +122,6 @@ config VIRT_WIFI
	  are wifi connections through a special rtnetlink device.

source "drivers/net/wireless/cnss2/Kconfig"
source "drivers/net/wireless/cnss_utils/Kconfig"

endif # WLAN
+2 −0
Original line number Diff line number Diff line
@@ -31,3 +31,5 @@ obj-$(CONFIG_MAC80211_HWSIM) += mac80211_hwsim.o
obj-$(CONFIG_VIRT_WIFI)	+= virt_wifi.o

obj-$(CONFIG_CNSS2) += cnss2/

obj-$(CONFIG_CNSS_UTILS) += cnss_utils/
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
config CNSS2
	tristate "CNSS2 Platform Driver for Wi-Fi Module"
	depends on !CNSS && PCI_MSM
	select CNSS_UTILS
	help
	  This module adds the support for Connectivity Subsystem (CNSS) used
	  for PCIe based Wi-Fi devices with QCA6174/QCA6290 chipsets.
+8 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

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
+3 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

obj-$(CONFIG_CNSS_UTILS) += cnss_utils.o
Loading