diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-03 13:59:32 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-09-14 20:46:28 +0300 |
commit | 30953a804714fcfe49bec594239306bf5b476464 (patch) | |
tree | ed83524a2c05cb01348fc009ff6aaf64697e7b9e /sound/soc/kirkwood | |
parent | 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff) | |
download | linux-30953a804714fcfe49bec594239306bf5b476464.tar.xz |
ASoC: kirkwood: 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/kirkwood')
-rw-r--r-- | sound/soc/kirkwood/armada-370-db.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/kirkwood/armada-370-db.c b/sound/soc/kirkwood/armada-370-db.c index de7563bdc5c2..e0304d544f26 100644 --- a/sound/soc/kirkwood/armada-370-db.c +++ b/sound/soc/kirkwood/armada-370-db.c @@ -130,6 +130,7 @@ static const struct of_device_id a370db_dt_ids[] = { { .compatible = "marvell,a370db-audio" }, { }, }; +MODULE_DEVICE_TABLE(of, a370db_dt_ids); static struct platform_driver a370db_driver = { .driver = { |