ASoC: mc13783: Use module_platform_driver_probe()
authorAlexander Shiyan <shc_work@mail.ru>
Sun, 5 Jan 2014 07:38:31 +0000 (11:38 +0400)
committerMark Brown <broonie@linaro.org>
Mon, 6 Jan 2014 15:37:43 +0000 (15:37 +0000)
mc13783-codec is probed only by MC13XXX MFD core driver so
use module_platform_driver_probe().

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/codecs/mc13783.c

index bae60164c7b7355408ab77676daa680bcb5946b0..8ab966860224e8bc0f5362009868d008bbacd940 100644 (file)
@@ -750,7 +750,7 @@ static struct snd_soc_codec_driver soc_codec_dev_mc13783 = {
        .num_dapm_routes = ARRAY_SIZE(mc13783_routes),
 };
 
-static int mc13783_codec_probe(struct platform_device *pdev)
+static int __init mc13783_codec_probe(struct platform_device *pdev)
 {
        struct mc13xxx *mc13xxx;
        struct mc13783_priv *priv;
@@ -804,11 +804,9 @@ static struct platform_driver mc13783_codec_driver = {
                   .name = "mc13783-codec",
                   .owner = THIS_MODULE,
                   },
-       .probe = mc13783_codec_probe,
        .remove = mc13783_codec_remove,
 };
-
-module_platform_driver(mc13783_codec_driver);
+module_platform_driver_probe(mc13783_codec_driver, mc13783_codec_probe);
 
 MODULE_DESCRIPTION("ASoC MC13783 driver");
 MODULE_AUTHOR("Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>");
This page took 0.026729 seconds and 5 git commands to generate.