linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ASoC: Samsung: return error if drvdata is not set
@ 2013-04-02 11:23 Padmavathi Venna
  2013-04-02 11:23 ` [PATCH 2/2] ASoC: Samsung: set drvdata before adding secondary device Padmavathi Venna
  2013-04-03 16:57 ` [PATCH 1/2] ASoC: Samsung: return error if drvdata is not set Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Padmavathi Venna @ 2013-04-02 11:23 UTC (permalink / raw)
  To: linux-arm-kernel

From: Prathyush K <prathyush.k@samsung.com>

This patch fixes a possible crash in case drvdata for the secondary
device is not set.

Signed-off-by: Prathyush K <prathyush.k@samsung.com>
Signed-off-by: Padmavathi Venna <padma.v@samsung.com>
---

Based on Kukjin for-next branch

 sound/soc/samsung/i2s.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/sound/soc/samsung/i2s.c b/sound/soc/samsung/i2s.c
index d7231e3..f1fc064 100644
--- a/sound/soc/samsung/i2s.c
+++ b/sound/soc/samsung/i2s.c
@@ -1107,6 +1107,10 @@ static int samsung_i2s_probe(struct platform_device *pdev)
 
 	if (samsung_dai_type == TYPE_SEC) {
 		sec_dai = dev_get_drvdata(&pdev->dev);
+		if (!sec_dai) {
+			dev_err(&pdev->dev, "Unable to get drvdata\n");
+			return -EFAULT;
+		}
 		snd_soc_register_dai(&sec_dai->pdev->dev,
 			&sec_dai->i2s_dai_drv);
 		asoc_dma_platform_register(&pdev->dev);
-- 
1.7.4.4

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

end of thread, other threads:[~2013-04-03 16:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-02 11:23 [PATCH 1/2] ASoC: Samsung: return error if drvdata is not set Padmavathi Venna
2013-04-02 11:23 ` [PATCH 2/2] ASoC: Samsung: set drvdata before adding secondary device Padmavathi Venna
2013-04-03 16:57 ` [PATCH 1/2] ASoC: Samsung: return error if drvdata is not set Mark Brown

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).