From: Fabio Estevam <fabio.estevam@xxxxxxx> i.MX51 and i.MX51 share the same sahara IP block version, so add i.MX51 in the compatible list. Signed-off-by: Fabio Estevam <fabio.estevam@xxxxxxx> --- drivers/crypto/sahara.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/sahara.c b/drivers/crypto/sahara.c index 0f2245e..ce1a42c 100644 --- a/drivers/crypto/sahara.c +++ b/drivers/crypto/sahara.c @@ -1382,6 +1382,7 @@ static const struct platform_device_id sahara_platform_ids[] = { MODULE_DEVICE_TABLE(platform, sahara_platform_ids); static const struct of_device_id sahara_dt_ids[] = { + { .compatible = "fsl,imx51-sahara" }, { .compatible = "fsl,imx53-sahara" }, { .compatible = "fsl,imx27-sahara" }, { /* sentinel */ } @@ -1507,7 +1508,9 @@ static int sahara_probe(struct platform_device *pdev) if (version != SAHARA_VERSION_3) err = -ENODEV; } else if (of_device_is_compatible(pdev->dev.of_node, - "fsl,imx53-sahara")) { + "fsl,imx53-sahara") || + of_device_is_compatible(pdev->dev.of_node, + "fsl,imx51-sahara")) { if (((version >> 8) & 0xff) != SAHARA_VERSION_4) err = -ENODEV; version = (version >> 8) & 0xff; -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html