ASoC: rsnd: set device data before snd_soc_register_platform/component
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Mon, 9 Feb 2015 08:05:22 +0000 (08:05 +0000)
committerMark Brown <broonie@kernel.org>
Mon, 9 Feb 2015 08:24:31 +0000 (16:24 +0800)
Set device data before snd_soc_register_platform/component.
Otherwise, it will use NULL pointer if user calls unbind -> bind or
rmmod -> insmod

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sh/rcar/core.c

index 75308bb..fc227d3 100644 (file)
@@ -1268,6 +1268,8 @@ static int rsnd_probe(struct platform_device *pdev)
                        goto exit_snd_probe;
        }
 
+       dev_set_drvdata(dev, priv);
+
        /*
         *      asoc register
         */
@@ -1284,8 +1286,6 @@ static int rsnd_probe(struct platform_device *pdev)
                goto exit_snd_soc;
        }
 
-       dev_set_drvdata(dev, priv);
-
        pm_runtime_enable(dev);
 
        dev_info(dev, "probed\n");