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 598361CA80; Sat, 3 Feb 2024 04:17:18 +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=1706933838; cv=none; b=asKeFKZoyMBCV07Yq7pW8KkXCkZHaYQW0Q0uTgCS+c3CMUAy3eh6UnAXjs6tFDOQH+FkSoAGet0JmNyepzbdPH72WhDfwtvzalOz6/32EP4aeMXk/mKzhswUd139qWZxYSuICMjStzJhPrW5Mz43pcLnObSPG7j4vE1ALPbIMAY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706933838; c=relaxed/simple; bh=KF1OPOGOAeiEtplfTWHMHUyw4AHcb8Ma47V/msvcP5s=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=CGhrF0ECnyVtMkYirA7sfRR25OI4kYSjw7GWLe0Qmcsy1LuzlfvMRCzGoO2LcqoIqUAawhkpzqW2+hDz2XPEUY4v9DFHXzE+RUXD+SkBd74/gmN+G5AsYvb1bc7iELwqd1mgNVH58UE+wvHFyKFMMvzewho6UOubypbqsy4SZOk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=oKj8XdHN; 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="oKj8XdHN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 22ED2C433C7; Sat, 3 Feb 2024 04:17:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1706933838; bh=KF1OPOGOAeiEtplfTWHMHUyw4AHcb8Ma47V/msvcP5s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oKj8XdHNZdJAUYKd5y81H+RHI3r27bIY8yvctlsvOas1Ow2vRhuTWt10bDdlJo9k3 Dbw+ywuStGL7oowRjqkxsIkrCioDW8ExQaNxYH9pWKIXa6UHalxH2aDnWYAQyY7MjG g8KYIi9/mLQhfPnwGL31voWCXybyJCcA+U7FrHxY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Cristian Ciocaltea , Mark Brown , Sasha Levin Subject: [PATCH 6.7 163/353] ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument Date: Fri, 2 Feb 2024 20:04:41 -0800 Message-ID: <20240203035408.795065173@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240203035403.657508530@linuxfoundation.org> References: <20240203035403.657508530@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.7-stable review patch. If anyone has any objections, please let me know. ------------------ From: Cristian Ciocaltea [ Upstream commit 67c7666fe808c3a7af3cc6f9d0a3dd3acfd26115 ] The virtual widget example makes use of an undefined SND_SOC_DAPM_NOPM argument passed to SND_SOC_DAPM_MIXER(). Replace with the correct SND_SOC_NOPM definition. Signed-off-by: Cristian Ciocaltea Link: https://lore.kernel.org/r/20231121120751.77355-1-cristian.ciocaltea@collabora.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- Documentation/sound/soc/dapm.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/sound/soc/dapm.rst b/Documentation/sound/soc/dapm.rst index 8e44107933ab..c3154ce6e1b2 100644 --- a/Documentation/sound/soc/dapm.rst +++ b/Documentation/sound/soc/dapm.rst @@ -234,7 +234,7 @@ corresponding soft power control. In this case it is necessary to create a virtual widget - a widget with no control bits e.g. :: - SND_SOC_DAPM_MIXER("AC97 Mixer", SND_SOC_DAPM_NOPM, 0, 0, NULL, 0), + SND_SOC_DAPM_MIXER("AC97 Mixer", SND_SOC_NOPM, 0, 0, NULL, 0), This can be used to merge to signal paths together in software. -- 2.43.0