From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DF9F21E0083; Wed, 6 Nov 2024 12:48:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730897313; cv=none; b=cKwLmM6aSxgRc0ON+eQsTCdUp9nMhlHcJPCrzyATtHutvUzU2oplcY5fc1l1I4Nic+65pe5wroeYtwV1RYuF3REXdqDmJshfbJ9Li0T36FbyKuqNeo1i5vpCR79l7mCW6rbW4WLxyHNYlVha+2ZvFGLC3imX8WVVXGnm1dFwW+c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730897313; c=relaxed/simple; bh=OFsek5c7L7b+oEn9EYOQhvI012Ek2REEX3UxP6jO7po=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=u7bjsvlFQlAlFZxBq0gHk7mfZcytBO62/FZfVtv6U0rXoRYJoRt8FosYr10N4oYkRddn66Pydu4LlTwNX560CzPP01ielEhn+1a87e4FPvDePQJhZgEpolJgSepcZq3fFDt7aRxp8r1d2sgQEfwl1uFlqTFpryCILNRuhiWZSss= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=z3iegBsu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="z3iegBsu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 63BD3C4CECD; Wed, 6 Nov 2024 12:48:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1730897312; bh=OFsek5c7L7b+oEn9EYOQhvI012Ek2REEX3UxP6jO7po=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=z3iegBsusMlVAfJ/sa1AFFP0KnYIIK8be4O5WrnaqPgp4F/GQ7daxkZrrArYWVi2g AtyW5JUq6ah/zF8Djg8gTslGXwlad53mfE0qxgnPKNn3JoYbQ4or4H7Hw26kmp1+w3 IHO3AXUDBcBGS4z2C2hgS18rV/HzyPVFOYbTC7II= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Geert Uytterhoeven , Arend van Spriel , Kalle Valo , Sasha Levin Subject: [PATCH 6.6 012/151] wifi: brcm80211: BRCM_TRACING should depend on TRACING Date: Wed, 6 Nov 2024 13:03:20 +0100 Message-ID: <20241106120309.176666211@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241106120308.841299741@linuxfoundation.org> References: <20241106120308.841299741@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Geert Uytterhoeven [ Upstream commit b73b2069528f90ec49d5fa1010a759baa2c2be05 ] When tracing is disabled, there is no point in asking the user about enabling Broadcom wireless device tracing. Fixes: f5c4f10852d42012 ("brcm80211: Allow trace support to be enabled separately from debug") Signed-off-by: Geert Uytterhoeven Acked-by: Arend van Spriel Signed-off-by: Kalle Valo Link: https://patch.msgid.link/81a29b15eaacc1ac1fb421bdace9ac0c3385f40f.1727179742.git.geert@linux-m68k.org Signed-off-by: Sasha Levin --- drivers/net/wireless/broadcom/brcm80211/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/wireless/broadcom/brcm80211/Kconfig b/drivers/net/wireless/broadcom/brcm80211/Kconfig index 3a1a35b5672f1..19d0c003f6262 100644 --- a/drivers/net/wireless/broadcom/brcm80211/Kconfig +++ b/drivers/net/wireless/broadcom/brcm80211/Kconfig @@ -27,6 +27,7 @@ source "drivers/net/wireless/broadcom/brcm80211/brcmfmac/Kconfig" config BRCM_TRACING bool "Broadcom device tracing" depends on BRCMSMAC || BRCMFMAC + depends on TRACING help If you say Y here, the Broadcom wireless drivers will register with ftrace to dump event information into the trace ringbuffer. -- 2.43.0