]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: simple-card: Provide owner and MODULE_ALIAS()
authorFabio Estevam <fabio.estevam@freescale.com>
Fri, 23 Aug 2013 17:35:17 +0000 (14:35 -0300)
committerMark Brown <broonie@linaro.org>
Fri, 23 Aug 2013 18:04:20 +0000 (19:04 +0100)
Add .owner field and also MODULE_ALIAS(), so that auto module loading can work.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/generic/simple-card.c

index 6cf8355a8542656c89dda5f1564c721d3f2cb4aa..8c49147db84c43cf73d5870a4802959e66330ce2 100644 (file)
@@ -105,6 +105,7 @@ static int asoc_simple_card_remove(struct platform_device *pdev)
 static struct platform_driver asoc_simple_card = {
        .driver = {
                .name   = "asoc-simple-card",
+               .owner = THIS_MODULE,
        },
        .probe          = asoc_simple_card_probe,
        .remove         = asoc_simple_card_remove,
@@ -112,6 +113,7 @@ static struct platform_driver asoc_simple_card = {
 
 module_platform_driver(asoc_simple_card);
 
+MODULE_ALIAS("platform:asoc-simple-card");
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION("ASoC Simple Sound Card");
 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");