From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A25F0C33CB1 for ; Thu, 16 Jan 2020 12:56:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8002A2073A for ; Thu, 16 Jan 2020 12:56:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726574AbgAPM4n (ORCPT ); Thu, 16 Jan 2020 07:56:43 -0500 Received: from szxga06-in.huawei.com ([45.249.212.32]:41436 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726018AbgAPM4n (ORCPT ); Thu, 16 Jan 2020 07:56:43 -0500 Received: from DGGEMS403-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id EAAFBB592AAA10E88C27; Thu, 16 Jan 2020 20:56:40 +0800 (CST) Received: from localhost.localdomain.localdomain (10.175.113.25) by DGGEMS403-HUB.china.huawei.com (10.3.19.203) with Microsoft SMTP Server id 14.3.439.0; Thu, 16 Jan 2020 20:56:31 +0800 From: Chen Zhou To: , CC: , , , Subject: [PATCH -next] mac80111: fix build error without CONFIG_ATH11K_DEBUGFS Date: Thu, 16 Jan 2020 20:51:55 +0800 Message-ID: <20200116125155.166749-1-chenzhou10@huawei.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.113.25] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org If CONFIG_ATH11K_DEBUGFS is n, build fails: drivers/net/wireless/ath/ath11k/debugfs_sta.c: In function ath11k_dbg_sta_open_htt_peer_stats: drivers/net/wireless/ath/ath11k/debugfs_sta.c:416:4: error: struct ath11k has no member named debug ar->debug.htt_stats.stats_req = stats_req; ^~ and many more similar messages. Select ATH11K_DEBUGFS under config MAC80211_DEBUGFS to fix this. Reported-by: Hulk Robot Signed-off-by: Chen Zhou --- net/mac80211/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/net/mac80211/Kconfig b/net/mac80211/Kconfig index 0c93b1b..0f2c2b8 100644 --- a/net/mac80211/Kconfig +++ b/net/mac80211/Kconfig @@ -77,6 +77,7 @@ config MAC80211_LEDS config MAC80211_DEBUGFS bool "Export mac80211 internals in DebugFS" + select ATH11K_DEBUGFS depends on MAC80211 && DEBUG_FS ---help--- Select this to see extensive information about -- 2.7.4