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

Commit c2dade34 authored by Lee Jones's avatar Lee Jones Committed by Linus Walleij
Browse files

crypto: ux500/cryp - Enable DT probing of the driver



By providing an OF match table with a suitable compatible string, we
can ensure the ux500-crypt driver is probed by supplying an associated
DT node in a given platform's Device Tree.

Cc: linux-crypto@vger.kernel.org
Acked-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 12b1843c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1743,6 +1743,11 @@ static int ux500_cryp_resume(struct device *dev)

static SIMPLE_DEV_PM_OPS(ux500_cryp_pm, ux500_cryp_suspend, ux500_cryp_resume);

static const struct of_device_id ux500_cryp_match[] = {
        { .compatible = "stericsson,ux500-cryp" },
        { },
};

static struct platform_driver cryp_driver = {
	.probe  = ux500_cryp_probe,
	.remove = ux500_cryp_remove,
@@ -1750,6 +1755,7 @@ static struct platform_driver cryp_driver = {
	.driver = {
		.owner = THIS_MODULE,
		.name  = "cryp1",
		.of_match_table = ux500_cryp_match,
		.pm    = &ux500_cryp_pm,
	}
};