Commit 6ae759e8 authored by Stephen Warren's avatar Stephen Warren Committed by Mark Brown

ASoC: spdif-dit: Add missing MODULE_*

MODULE_ALIAS is required so that the module will auto-load based on a
platform_device registration in the board file.

While we're at it, add some other MODULE_*.
Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent a0c83263
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include <sound/pcm.h> #include <sound/pcm.h>
#include <sound/initval.h> #include <sound/initval.h>
MODULE_LICENSE("GPL"); #define DRV_NAME "spdif-dit"
#define STUB_RATES SNDRV_PCM_RATE_8000_96000 #define STUB_RATES SNDRV_PCM_RATE_8000_96000
#define STUB_FORMATS SNDRV_PCM_FMTBIT_S16_LE #define STUB_FORMATS SNDRV_PCM_FMTBIT_S16_LE
...@@ -56,7 +56,7 @@ static struct platform_driver spdif_dit_driver = { ...@@ -56,7 +56,7 @@ static struct platform_driver spdif_dit_driver = {
.probe = spdif_dit_probe, .probe = spdif_dit_probe,
.remove = spdif_dit_remove, .remove = spdif_dit_remove,
.driver = { .driver = {
.name = "spdif-dit", .name = DRV_NAME,
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
}; };
...@@ -74,3 +74,7 @@ static void __exit dit_exit(void) ...@@ -74,3 +74,7 @@ static void __exit dit_exit(void)
module_init(dit_modinit); module_init(dit_modinit);
module_exit(dit_exit); module_exit(dit_exit);
MODULE_AUTHOR("Steve Chen <schen@mvista.com>");
MODULE_DESCRIPTION("SPDIF dummy codec driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:" DRV_NAME);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment