diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-03 13:58:57 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-09-14 20:46:14 +0300 |
commit | 27fcf913f6462662e9ec1b74ce04961126852db9 (patch) | |
tree | 4d7db5e9740570d813557d0cef247e85bf16dd91 /sound/soc/jz4740 | |
parent | 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff) | |
download | linux-27fcf913f6462662e9ec1b74ce04961126852db9.tar.xz |
ASoC: jz4740: 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/jz4740')
-rw-r--r-- | sound/soc/jz4740/jz4740-i2s.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/jz4740/jz4740-i2s.c b/sound/soc/jz4740/jz4740-i2s.c index b05fb1c1a848..794a3499e567 100644 --- a/sound/soc/jz4740/jz4740-i2s.c +++ b/sound/soc/jz4740/jz4740-i2s.c @@ -485,6 +485,7 @@ static const struct of_device_id jz4740_of_matches[] = { { .compatible = "ingenic,jz4780-i2s", .data = (void *)JZ_I2S_JZ4780 }, { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, jz4740_of_matches); #endif static int jz4740_i2s_dev_probe(struct platform_device *pdev) |