All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch v2 1/2] ASoC: atmel: sam9x5_wm8731: fix oops when unload module
@ 2013-11-27 10:05 ` Bo Shen
  0 siblings, 0 replies; 19+ messages in thread
From: Bo Shen @ 2013-11-27 10:05 UTC (permalink / raw)
  To: broonie
  Cc: alsa-devel, richard.genoud, nicolas.ferre, linux-sound, Bo Shen,
	plagnioj, linux-arm-kernel

As the priv is not assigned to card->drvdata, it is NULL, so when
unload module, it will cause NULL pointer oops.
Assign priv to card->drvdata to fix this issue.

Signed-off-by: Bo Shen <voice.shen@atmel.com>
---
Change in v2: 
  - using snd_soc_card_set_drvdata()
---
 sound/soc/atmel/sam9x5_wm8731.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/soc/atmel/sam9x5_wm8731.c b/sound/soc/atmel/sam9x5_wm8731.c
index 992ae38..1b37228 100644
--- a/sound/soc/atmel/sam9x5_wm8731.c
+++ b/sound/soc/atmel/sam9x5_wm8731.c
@@ -97,6 +97,8 @@ static int sam9x5_wm8731_driver_probe(struct platform_device *pdev)
 		goto out;
 	}
 
+	snd_soc_card_set_drvdata(card, priv);
+
 	card->dev = &pdev->dev;
 	card->owner = THIS_MODULE;
 	card->dai_link = dai;
-- 
1.7.9.5

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

end of thread, other threads:[~2013-12-31 12:27 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-27 10:05 [Patch v2 1/2] ASoC: atmel: sam9x5_wm8731: fix oops when unload module Bo Shen
2013-11-27 10:05 ` Bo Shen
2013-11-27 10:05 ` Bo Shen
2013-11-27 10:05 ` [Patch v2 2/2] ASoC: atmel: sam9x5_wm8731: remove platform_set_drvdata Bo Shen
2013-11-27 10:05   ` Bo Shen
2013-11-27 10:05   ` Bo Shen
2013-12-09 10:20   ` Nicolas Ferre
2013-12-09 10:20     ` Nicolas Ferre
2013-12-09 10:20     ` Nicolas Ferre
2013-12-09 16:58     ` Mark Brown
2013-12-09 16:58       ` Mark Brown
2013-12-09 16:58       ` Mark Brown
2013-12-18  6:55   ` [RESEND PATCH " Bo Shen
2013-12-18  6:55     ` Bo Shen
2013-12-18  6:55     ` Bo Shen
2013-12-31 12:27   ` [Patch " Mark Brown
2013-12-31 12:27     ` Mark Brown
2013-11-27 15:50 ` [Patch v2 1/2] ASoC: atmel: sam9x5_wm8731: fix oops when unload module Mark Brown
2013-11-27 15:50   ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.