Skip to content

Commit

Permalink
crypto: ux500 - Fix module autoload for OF platform drivers
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Luis de Bethencourt authored and Herbert Xu committed Sep 21, 2015
1 parent c3abc0f commit 53ed2d4
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/crypto/ux500/cryp/cryp_core.c
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions drivers/crypto/ux500/hash/hash_core.c
Original file line number Diff line number Diff line change
@@ -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,

0 comments on commit 53ed2d4

Please sign in to comment.