diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-03 12:58:23 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-09-14 18:44:51 +0100 |
commit | c759241fe2f16e6be43675abaa715f0da9d7a254 (patch) | |
tree | 19aae9eb7827aaf027a4395b7c5a83fd5db28146 /sound/soc/fsl | |
parent | 5226f2340c67225d27f61330205f16314881cc5c (diff) | |
download | linux-c759241fe2f16e6be43675abaa715f0da9d7a254.tar.bz2 |
ASoC: fsl_sai: 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/fsl')
-rw-r--r-- | sound/soc/fsl/fsl_sai.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c index a18fd92c4a85..9366b5a42e1d 100644 --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -801,6 +801,7 @@ static const struct of_device_id fsl_sai_ids[] = { { .compatible = "fsl,imx6sx-sai", }, { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, fsl_sai_ids); static struct platform_driver fsl_sai_driver = { .probe = fsl_sai_probe, |