From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Roeschley Subject: [PATCH 3/3] ath6kl: Use debug instead of error message when disabled Date: Thu, 8 Nov 2018 10:36:59 -0600 Message-ID: <20181108163659.19535-3-kyle.roeschley@ni.com> References: <20181108163659.19535-1-kyle.roeschley@ni.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Cc: "David S . Miller" , , , , Kyle Roeschley To: Kalle Valo Return-path: Received: from mx0a-00010702.pphosted.com ([148.163.156.75]:52648 "EHLO mx0b-00010702.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726421AbeKICN3 (ORCPT ); Thu, 8 Nov 2018 21:13:29 -0500 In-Reply-To: <20181108163659.19535-1-kyle.roeschley@ni.com> Sender: netdev-owner@vger.kernel.org List-ID: This is not an unexpected condition, so we don't need to be shouting to the world about it. Signed-off-by: Kyle Roeschley --- drivers/net/wireless/ath/ath6kl/cfg80211.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath6kl/cfg80211.c b/drivers/net/wireless/ath/ath6kl/cfg80211.c index d7c626d9594e..59dd50866932 100644 --- a/drivers/net/wireless/ath/ath6kl/cfg80211.c +++ b/drivers/net/wireless/ath/ath6kl/cfg80211.c @@ -291,7 +291,7 @@ static bool ath6kl_cfg80211_ready(struct ath6kl_vif *vif) } if (!test_bit(WLAN_ENABLED, &vif->flags)) { - ath6kl_err("wlan disabled\n"); + ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "wlan disabled\n"); return false; } -- 2.19.1