diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-03 13:00:40 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-09-14 18:47:20 +0100 |
commit | cfa7a38c754a56fd80762d1251f4c344eb535230 (patch) | |
tree | e34f02a11a0bca42ea55fbbb0b17c8327621ba56 /sound/soc/ux500 | |
parent | 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff) | |
download | linux-rt-cfa7a38c754a56fd80762d1251f4c344eb535230.tar.gz |
ASoC: mop500: Fix module autoload for OF platform driver
This platform driver has a OF device ID table but the OF module
alias information is not created so module autoloading won't work.
Signed-off-by: Luis de Bethencourt <luis@debethencourt.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/ux500')
-rw-r--r-- | sound/soc/ux500/mop500.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/ux500/mop500.c b/sound/soc/ux500/mop500.c index 4e0c0e502ade..ba9fc099cf67 100644 --- a/sound/soc/ux500/mop500.c +++ b/sound/soc/ux500/mop500.c @@ -152,6 +152,7 @@ static const struct of_device_id snd_soc_mop500_match[] = { { .compatible = "stericsson,snd-soc-mop500", }, {}, }; +MODULE_DEVICE_TABLE(of, snd_soc_mop500_match); static struct platform_driver snd_soc_mop500_driver = { .driver = { |