From: Mark Brown <broonie@kernel.org>
To: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>,
Mark Brown <broonie@kernel.org>
Cc: alsa-devel@alsa-project.org
Subject: Applied "ASoC: da7219: Disable regulators on probe() failure" to the asoc tree
Date: Wed, 23 Dec 2015 00:12:19 +0000 [thread overview]
Message-ID: <E1aBX2R-0008NQ-70@debutante> (raw)
In-Reply-To: <013f8a59618a9dfa74f6f983ed6ba4d7bec6a9d0.1450807642.git.Adam.Thomson.Opensource@diasemi.com>
The patch
ASoC: da7219: Disable regulators on probe() failure
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
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
>From 9069bf9bc839d97e07fe17c336eab095c1065cec Mon Sep 17 00:00:00 2001
From: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Date: Tue, 22 Dec 2015 18:27:51 +0000
Subject: [PATCH] ASoC: da7219: Disable regulators on probe() failure
If codec probe() function fails after supplies have been enabled
it should really tidy up and disable them again. This patch updates
the probe function to do just that.
Signed-off-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/codecs/da7219.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c
index 319e794d27f6..9136a8b6f593 100644
--- a/sound/soc/codecs/da7219.c
+++ b/sound/soc/codecs/da7219.c
@@ -1663,10 +1663,12 @@ static int da7219_probe(struct snd_soc_codec *codec)
/* Check if MCLK provided */
da7219->mclk = devm_clk_get(codec->dev, "mclk");
if (IS_ERR(da7219->mclk)) {
- if (PTR_ERR(da7219->mclk) != -ENOENT)
- return PTR_ERR(da7219->mclk);
- else
+ if (PTR_ERR(da7219->mclk) != -ENOENT) {
+ ret = PTR_ERR(da7219->mclk);
+ goto err_disable_reg;
+ } else {
da7219->mclk = NULL;
+ }
}
/* Default PC counter to free-running */
@@ -1694,7 +1696,16 @@ static int da7219_probe(struct snd_soc_codec *codec)
snd_soc_write(codec, DA7219_TONE_GEN_CYCLES, DA7219_BEEP_CYCLES_MASK);
/* Initialise AAD block */
- return da7219_aad_init(codec);
+ ret = da7219_aad_init(codec);
+ if (ret)
+ goto err_disable_reg;
+
+ return 0;
+
+err_disable_reg:
+ regulator_bulk_disable(DA7219_NUM_SUPPLIES, da7219->supplies);
+
+ return ret;
}
static int da7219_remove(struct snd_soc_codec *codec)
--
2.6.2
next prev parent reply other threads:[~2015-12-23 0:12 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-22 18:27 [PATCH 0/6] ASoC: da7219: AB Silicon related updates and small fixes Adam Thomson
2015-12-22 18:27 ` [PATCH 1/6] ASoC: da7219: Disable regulators on probe() failure Adam Thomson
2015-12-23 0:12 ` Mark Brown [this message]
2015-12-22 18:27 ` [PATCH 2/6] ASoC: da7219: Fix Sidetone to work regardless of DAI capture Adam Thomson
2015-12-23 0:12 ` Applied "ASoC: da7219: Fix Sidetone to work regardless of DAI capture" to the asoc tree Mark Brown
2015-12-22 18:27 ` [PATCH 3/6] ASoC: da7219: Update REFERENCES reg default, in-line with HW Adam Thomson
2015-12-23 0:10 ` Mark Brown
[not found] ` <20151223001019.GG16023-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2015-12-23 9:47 ` Opensource [Adam Thomson]
[not found] ` <2E89032DDAA8B9408CB92943514A0337D4611EEA-68WUHU125fLLPO1uwJ3ImwLouzNaz+3S@public.gmane.org>
2015-12-23 11:38 ` Mark Brown
2015-12-23 0:12 ` Applied "ASoC: da7219: Update REFERENCES reg default, in-line with HW" to the asoc tree Mark Brown
2015-12-22 18:27 ` [PATCH 4/6] ASoC: da7219: Remove internal LDO features of codec Adam Thomson
[not found] ` <c5fa840a76989331e59c4b97956a203d07d07464.1450807642.git.Adam.Thomson.Opensource-WBD+wuPFNBhBDgjK7y7TUQ@public.gmane.org>
2015-12-22 22:38 ` Rob Herring
2015-12-23 0:12 ` Applied "ASoC: da7219: Remove internal LDO features of codec" to the asoc tree Mark Brown
2015-12-22 18:27 ` [PATCH 5/6] ASoC: da7219: Add support for 1.6V micbias level Adam Thomson
2015-12-22 22:37 ` Rob Herring
2015-12-23 0:12 ` Applied "ASoC: da7219: Add support for 1.6V micbias level" to the asoc tree Mark Brown
2015-12-22 18:27 ` [PATCH 6/6] ASoC: da7219: Remove support for 32KHz PLL mode Adam Thomson
2015-12-23 0:12 ` Applied "ASoC: da7219: Remove support for 32KHz PLL mode" to the asoc tree Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1aBX2R-0008NQ-70@debutante \
--to=broonie@kernel.org \
--cc=Adam.Thomson.Opensource@diasemi.com \
--cc=alsa-devel@alsa-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox