linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/5] ASoC: imx-sgtl5000: put of nodes if finding codec fails
@ 2019-01-18  9:06 Stefan Agner
  2019-01-18  9:06 ` [PATCH v2 2/5] ASoC: imx-sgtl5000: lower log level for potential probe deferral cases Stefan Agner
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Stefan Agner @ 2019-01-18  9:06 UTC (permalink / raw)
  To: timur, nicoleotsuka, Xiubo.Lee
  Cc: fabio.estevam, lgirdwood, broonie, perex, tiwai, alsa-devel,
	linux-kernel, Stefan Agner, Daniel Baluta

Make sure to properly put the of node in case finding the codec
fails.

Fixes: 81e8e4926167 ("ASoC: fsl: add sgtl5000 clock support for imx-sgtl5000")
Signed-off-by: Stefan Agner <stefan@agner.ch>
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
---
Changes in v2:
- Reordered patches, make sure this is the first in the patchset

--
Stefan

 sound/soc/fsl/imx-sgtl5000.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sound/soc/fsl/imx-sgtl5000.c b/sound/soc/fsl/imx-sgtl5000.c
index c29200cf755a..594bde3b0ded 100644
--- a/sound/soc/fsl/imx-sgtl5000.c
+++ b/sound/soc/fsl/imx-sgtl5000.c
@@ -111,7 +111,8 @@ static int imx_sgtl5000_probe(struct platform_device *pdev)
 	codec_dev = of_find_i2c_device_by_node(codec_np);
 	if (!codec_dev) {
 		dev_err(&pdev->dev, "failed to find codec platform device\n");
-		return -EPROBE_DEFER;
+		ret = -EPROBE_DEFER;
+		goto fail;
 	}
 
 	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-01-18 10:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-18  9:06 [PATCH v2 1/5] ASoC: imx-sgtl5000: put of nodes if finding codec fails Stefan Agner
2019-01-18  9:06 ` [PATCH v2 2/5] ASoC: imx-sgtl5000: lower log level for potential probe deferral cases Stefan Agner
2019-01-18 10:41   ` [alsa-devel] " Fabio Estevam
2019-01-18  9:06 ` [PATCH v2 3/5] ASoC: imx-sgtl5000: don't print EPROBE_DEFER as error Stefan Agner
2019-01-18 10:42   ` [alsa-devel] " Fabio Estevam
2019-01-18  9:06 ` [PATCH v2 4/5] ASoC: fsl_spdif: " Stefan Agner
2019-01-18 10:42   ` [alsa-devel] " Fabio Estevam
2019-01-18  9:06 ` [PATCH v2 5/5] ASoC: imx-spdif: " Stefan Agner
2019-01-18 10:43   ` [alsa-devel] " Fabio Estevam
2019-01-18 10:41 ` [alsa-devel] [PATCH v2 1/5] ASoC: imx-sgtl5000: put of nodes if finding codec fails Fabio Estevam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).