diff options
author | Axel Lin <axel.lin@gmail.com> | 2010-11-29 14:55:58 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-11-29 18:28:53 +0000 |
commit | 39a545559f8d5f13e8a4a7dfddcaad0e2ba9bcfb (patch) | |
tree | bd68fb40a2704dc72ae62dc047f69c8fcd20902d /sound | |
parent | 67bd489aa309a680b1462ad635df29e8825152d2 (diff) | |
download | linux-3.10-39a545559f8d5f13e8a4a7dfddcaad0e2ba9bcfb.tar.gz linux-3.10-39a545559f8d5f13e8a4a7dfddcaad0e2ba9bcfb.tar.bz2 linux-3.10-39a545559f8d5f13e8a4a7dfddcaad0e2ba9bcfb.zip |
ASoC: Add missing dev_set_drvdata in p1022_ds_probe
Otherwise, calling dev_get_drvdata in p1022_ds_remove returns NULL.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Timur Tabi <timur@freescale.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/fsl/p1022_ds.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/fsl/p1022_ds.c b/sound/soc/fsl/p1022_ds.c index 63b9eaa1ebc..026b756961e 100644 --- a/sound/soc/fsl/p1022_ds.c +++ b/sound/soc/fsl/p1022_ds.c @@ -498,6 +498,7 @@ static int p1022_ds_probe(struct platform_device *pdev) dev_err(&pdev->dev, "platform device add failed\n"); goto error; } + dev_set_drvdata(&pdev->dev, sound_device); of_node_put(codec_np); |