From patchwork Thu Dec 21 16:05:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rakesh Pillai X-Patchwork-Id: 10127931 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id BBA9E6056F for ; Thu, 21 Dec 2017 16:05:46 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id AC25F29897 for ; Thu, 21 Dec 2017 16:05:46 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A118029D20; Thu, 21 Dec 2017 16:05:46 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9860A29897 for ; Thu, 21 Dec 2017 16:05:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753652AbdLUQFn (ORCPT ); Thu, 21 Dec 2017 11:05:43 -0500 Received: from sabertooth01.qualcomm.com ([65.197.215.72]:58150 "EHLO sabertooth01.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753433AbdLUQFm (ORCPT ); Thu, 21 Dec 2017 11:05:42 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=qti.qualcomm.com; i=@qti.qualcomm.com; q=dns/txt; s=qcdkim; t=1513872342; x=1545408342; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=66992gBXssFa/MXA5EiwEb0jCHVXEb11KBBWDcuqqb8=; b=gSqJxGOa+bUwkrgcg3h+OCswuB7RkbQYrXpyQ4uymcEQE06O//n5AZco 8CPb25eVNT0I+wfbR5QOJWnJgU4ejObwo+UqJk7bnGHLud3xWLBizDVSY 1JXLY3E+JioUPCldJUnASNtLjDFkvyKCIB9H+pMQYcOOuRVqAebmI/OUA M=; X-IronPort-AV: E=Sophos;i="5.45,436,1508828400"; d="scan'208";a="118381625" Received: from ironmsg01-sd.qualcomm.com ([10.53.140.141]) by sabertooth01.qualcomm.com with ESMTP/TLS/AES256-SHA; 21 Dec 2017 08:05:33 -0800 X-MGA-submission: =?us-ascii?q?MDFgN2cUvZr0uQvpqdMfhnVNnQ1MwMwysrFOn8?= =?us-ascii?q?3iglQ3Gr3Dmy8RskvLlLtDE04H5iShZAmBu9xNq06Q/wgvhJCApVSVrU?= =?us-ascii?q?m24YA8tIhXKyt080B/89Y/+0vNVHYBfSNK6ULObAipD3fnKeoqA55FPF?= =?us-ascii?q?s1?= Received: from pillair-linux.qualcomm.com ([10.204.116.193]) by ironmsg01-sd.qualcomm.com with ESMTP; 21 Dec 2017 08:05:28 -0800 Received: by pillair-linux.qualcomm.com (Postfix, from userid 452944) id CCB272440; Thu, 21 Dec 2017 21:35:27 +0530 (IST) From: Rakesh Pillai To: ath10k@lists.infradead.org Cc: linux-wireless@vger.kernel.org, Govind Singh , Rakesh Pillai Subject: [PATCH v2 2/3] ath10k: Add debug mask for SNOC bus type Date: Thu, 21 Dec 2017 21:35:21 +0530 Message-Id: <1513872322-26636-3-git-send-email-pillair@qti.qualcomm.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1513872322-26636-1-git-send-email-pillair@qti.qualcomm.com> References: <1513872322-26636-1-git-send-email-pillair@qti.qualcomm.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Govind Singh WCN3990 target uses SNOC bus. Add debug mask for SNOC bus type. Signed-off-by: Govind Singh Signed-off-by: Rakesh Pillai --- drivers/net/wireless/ath/ath10k/debug.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/wireless/ath/ath10k/debug.h b/drivers/net/wireless/ath/ath10k/debug.h index 5e662994c49a..134fb68ae546 100644 --- a/drivers/net/wireless/ath/ath10k/debug.h +++ b/drivers/net/wireless/ath/ath10k/debug.h @@ -42,6 +42,7 @@ enum ath10k_debug_mask { ATH10K_DBG_SDIO_DUMP = 0x00020000, ATH10K_DBG_USB = 0x00040000, ATH10K_DBG_USB_BULK = 0x00080000, + ATH10K_DBG_SNOC = 0x00100000, ATH10K_DBG_ANY = 0xffffffff, };