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

Commit b9e75d57 authored by Govind Singh's avatar Govind Singh Committed by Gerrit - the friendly Code Review server
Browse files

ath10k: Fix ATH10K_DBG_SNOC debug mask



ATH10K_DBG_SNOC debug mask is incorrectly assigned.
Fix this by correctly assigning the debug mask
for WCN3990.

Change-Id: I261e4789e4c69cf2493b8e18df9ffb538b256b20
Signed-off-by: default avatarGovind Singh <govinds@codeaurora.org>
parent 27489753
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ enum ath10k_debug_mask {
	ATH10K_DBG_WMI_PRINT	= 0x00002000,
	ATH10K_DBG_PCI_PS	= 0x00004000,
	ATH10K_DBG_AHB		= 0x00008000,
	ATH10K_DBG_SNOC		= 0x00009000,
	ATH10K_DBG_SNOC		= 0x00010000,
	ATH10K_DBG_ANY		= 0xffffffff,
};