public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ASoC: da7218: fix fix child-node lookup
@ 2017-11-13 11:12 Johan Hovold
  2017-11-13 11:12 ` [PATCH 2/2] ASoC: twl4030: " Johan Hovold
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Johan Hovold @ 2017-11-13 11:12 UTC (permalink / raw)
  To: Mark Brown
  Cc: Support Opensource, Liam Girdwood, Jaroslav Kysela, Takashi Iwai,
	Peter Ujfalusi, alsa-devel, linux-kernel, Johan Hovold, stable,
	Adam Thomson

Fix child-node lookup during probe, which ended up searching the whole
device tree depth-first starting at the parent rather than just matching
on its children.

To make things worse, the parent codec node was also prematurely freed.

Fixes: 4d50934abd22 ("ASoC: da7218: Add da7218 codec driver")
Cc: stable <stable@vger.kernel.org>     # 4.5
Cc: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 sound/soc/codecs/da7218.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/da7218.c b/sound/soc/codecs/da7218.c
index b2d42ec1dcd9..56564ce90cb6 100644
--- a/sound/soc/codecs/da7218.c
+++ b/sound/soc/codecs/da7218.c
@@ -2520,7 +2520,7 @@ static struct da7218_pdata *da7218_of_to_pdata(struct snd_soc_codec *codec)
 	}
 
 	if (da7218->dev_id == DA7218_DEV_ID) {
-		hpldet_np = of_find_node_by_name(np, "da7218_hpldet");
+		hpldet_np = of_get_child_by_name(np, "da7218_hpldet");
 		if (!hpldet_np)
 			return pdata;
 
-- 
2.15.0

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

end of thread, other threads:[~2017-11-16 19:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-13 11:12 [PATCH 1/2] ASoC: da7218: fix fix child-node lookup Johan Hovold
2017-11-13 11:12 ` [PATCH 2/2] ASoC: twl4030: " Johan Hovold
2017-11-16 19:33   ` Applied "ASoC: twl4030: fix child-node lookup" to the asoc tree Mark Brown
2017-11-14 12:02 ` [PATCH 1/2] ASoC: da7218: fix fix child-node lookup Adam Thomson
2017-11-16 19:28 ` Applied "ASoC: da7218: fix fix child-node lookup" to the asoc tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox