Message ID | 20231121120751.77355-1-cristian.ciocaltea@collabora.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 67c7666fe808c3a7af3cc6f9d0a3dd3acfd26115 |
Headers | show |
Series | ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument | expand |
On Tue, 21 Nov 2023 14:07:51 +0200, Cristian Ciocaltea wrote: > 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. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument commit: 67c7666fe808c3a7af3cc6f9d0a3dd3acfd26115 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
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.
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 <cristian.ciocaltea@collabora.com> --- Documentation/sound/soc/dapm.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)