Message ID | 1633614619-27026-1-git-send-email-srivasam@codeaurora.org (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | ASoC: wcd938x: Fix jack detection issue | expand |
On 07/10/2021 14:50, Srinivasa Rao Mandadapu wrote: > This patch is to fix audio 3.5mm jack detection failure > on wcd938x codec based target. > > Fixes: bcee7ed09b8e (ASoC: codecs: wcd938x: add Multi Button Headset Control support) > > Signed-off-by: Venkata Prasad Potturu <potturu@codeaurora.org> > Signed-off-by: Srinivasa Rao Mandadapu <srivasam@codeaurora.org> Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> > --- > sound/soc/codecs/wcd938x.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/sound/soc/codecs/wcd938x.c b/sound/soc/codecs/wcd938x.c > index f0daf8d..52de7d1 100644 > --- a/sound/soc/codecs/wcd938x.c > +++ b/sound/soc/codecs/wcd938x.c > @@ -4144,10 +4144,10 @@ static int wcd938x_codec_set_jack(struct snd_soc_component *comp, > { > struct wcd938x_priv *wcd = dev_get_drvdata(comp->dev); > > - if (!jack) > + if (jack) > return wcd_mbhc_start(wcd->wcd_mbhc, &wcd->mbhc_cfg, jack); > - > - wcd_mbhc_stop(wcd->wcd_mbhc); > + else > + wcd_mbhc_stop(wcd->wcd_mbhc); > > return 0; > } >
On Thu, 7 Oct 2021 19:20:19 +0530, Srinivasa Rao Mandadapu wrote: > This patch is to fix audio 3.5mm jack detection failure > on wcd938x codec based target. > > Fixes: bcee7ed09b8e (ASoC: codecs: wcd938x: add Multi Button Headset Control support) > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: wcd938x: Fix jack detection issue commit: db0767b8a6e620b99459d2e688c1983c2e5add0d 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/wcd938x.c b/sound/soc/codecs/wcd938x.c index f0daf8d..52de7d1 100644 --- a/sound/soc/codecs/wcd938x.c +++ b/sound/soc/codecs/wcd938x.c @@ -4144,10 +4144,10 @@ static int wcd938x_codec_set_jack(struct snd_soc_component *comp, { struct wcd938x_priv *wcd = dev_get_drvdata(comp->dev); - if (!jack) + if (jack) return wcd_mbhc_start(wcd->wcd_mbhc, &wcd->mbhc_cfg, jack); - - wcd_mbhc_stop(wcd->wcd_mbhc); + else + wcd_mbhc_stop(wcd->wcd_mbhc); return 0; }