diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-08-28 18:44:03 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-09-21 22:00:36 +0800 |
commit | c3abc0f3b606a984f864452292c423f01e57c656 (patch) | |
tree | b6f5c47629653f2a4406ecbe863f17f7748d9ed6 /drivers | |
parent | 3dc1597b6b0a8d17fc56d93b5e9cf859fe681727 (diff) | |
download | op-kernel-dev-c3abc0f3b606a984f864452292c423f01e57c656.zip op-kernel-dev-c3abc0f3b606a984f864452292c423f01e57c656.tar.gz |
crypto: picoxcell - 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: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/crypto/picoxcell_crypto.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/picoxcell_crypto.c b/drivers/crypto/picoxcell_crypto.c index da36de2..615da96 100644 --- a/drivers/crypto/picoxcell_crypto.c +++ b/drivers/crypto/picoxcell_crypto.c @@ -1591,6 +1591,7 @@ static const struct of_device_id spacc_of_id_table[] = { { .compatible = "picochip,spacc-l2" }, {} }; +MODULE_DEVICE_TABLE(of, spacc_of_id_table); #endif /* CONFIG_OF */ static bool spacc_is_compatible(struct platform_device *pdev, |