Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53ed2d4e authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Herbert Xu
Browse files

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: default avatarLuis de Bethencourt <luis@debethencourt.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent c3abc0f3
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -1777,6 +1777,7 @@ static const struct of_device_id ux500_cryp_match[] = {
	{ .compatible = "stericsson,ux500-cryp" },
	{ .compatible = "stericsson,ux500-cryp" },
	{ },
	{ },
};
};
MODULE_DEVICE_TABLE(of, ux500_cryp_match);


static struct platform_driver cryp_driver = {
static struct platform_driver cryp_driver = {
	.probe  = ux500_cryp_probe,
	.probe  = ux500_cryp_probe,
+1 −0
Original line number Original line Diff line number Diff line
@@ -1958,6 +1958,7 @@ static const struct of_device_id ux500_hash_match[] = {
	{ .compatible = "stericsson,ux500-hash" },
	{ .compatible = "stericsson,ux500-hash" },
	{ },
	{ },
};
};
MODULE_DEVICE_TABLE(of, ux500_hash_match);


static struct platform_driver hash_driver = {
static struct platform_driver hash_driver = {
	.probe  = ux500_hash_probe,
	.probe  = ux500_hash_probe,