浏览代码

crypto: ux500 - Fix module autoload for OF platform drivers

These platform drivers have 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>
Luis de Bethencourt 10 年之前
父节点
当前提交
53ed2d4e56
共有 2 个文件被更改,包括 2 次插入0 次删除
  1. 1 0
      drivers/crypto/ux500/cryp/cryp_core.c
  2. 1 0
      drivers/crypto/ux500/hash/hash_core.c

+ 1 - 0
drivers/crypto/ux500/cryp/cryp_core.c

@@ -1777,6 +1777,7 @@ static const struct of_device_id ux500_cryp_match[] = {
 	{ .compatible = "stericsson,ux500-cryp" },
 	{ },
 };
+MODULE_DEVICE_TABLE(of, ux500_cryp_match);
 
 static struct platform_driver cryp_driver = {
 	.probe  = ux500_cryp_probe,

+ 1 - 0
drivers/crypto/ux500/hash/hash_core.c

@@ -1958,6 +1958,7 @@ static const struct of_device_id ux500_hash_match[] = {
 	{ .compatible = "stericsson,ux500-hash" },
 	{ },
 };
+MODULE_DEVICE_TABLE(of, ux500_hash_match);
 
 static struct platform_driver hash_driver = {
 	.probe  = ux500_hash_probe,