Message ID | 20241111165523.113142-1-marex@denx.de (mailing list archive) |
---|---|
State | Accepted |
Commit | d0621105eff307408ceb3d0eb61ca2a23c37fcbe |
Headers | show |
Series | ASoC: max98088: Add headphone mixer switch | expand |
On Mon, 11 Nov 2024 17:55:04 +0100, Marek Vasut wrote: > Add enable/disable headphone output mixers knob. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: max98088: Add headphone mixer switch commit: d0621105eff307408ceb3d0eb61ca2a23c37fcbe 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/sound/soc/codecs/max98088.c b/sound/soc/codecs/max98088.c index d679bd9175ebd..8915f52506953 100644 --- a/sound/soc/codecs/max98088.c +++ b/sound/soc/codecs/max98088.c @@ -489,6 +489,9 @@ static const struct snd_kcontrol_new max98088_snd_controls[] = { SOC_SINGLE("ADCL Boost Volume", M98088_REG_33_LVL_ADC_L, 4, 3, 0), SOC_SINGLE("ADCR Boost Volume", M98088_REG_34_LVL_ADC_R, 4, 3, 0), + SOC_SINGLE("Left HP Output Mixer Switch", M98088_REG_27_MIX_HP_CNTL, 4, 1, 0), + SOC_SINGLE("Right HP Output Mixer Switch", M98088_REG_27_MIX_HP_CNTL, 5, 1, 0), + SOC_SINGLE("EQ1 Switch", M98088_REG_49_CFG_LEVEL, 0, 1, 0), SOC_SINGLE("EQ2 Switch", M98088_REG_49_CFG_LEVEL, 1, 1, 0),
Add enable/disable headphone output mixers knob. Signed-off-by: Marek Vasut <marex@denx.de> --- Cc: Chen Ni <nichen@iscas.ac.cn> Cc: Jaroslav Kysela <perex@perex.cz> Cc: Liam Girdwood <lgirdwood@gmail.com> Cc: Mark Brown <broonie@kernel.org> Cc: Takashi Iwai <tiwai@suse.com> Cc: linux-sound@vger.kernel.org --- sound/soc/codecs/max98088.c | 3 +++ 1 file changed, 3 insertions(+)