LF-15735: drivers: crypto: caam: fix mx8ulp caam probe

Fixes a bug in the CAAM probe on i.MX8ULP.

Due to the change of device-tree node name of secure-enclave,
was not updated in CAAM driver.

Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com>
This commit is contained in:
Pankaj Gupta 2025-07-01 22:01:29 +05:30
parent 4ca54a8f6c
commit 1ed1a4c7d1

View File

@ -905,7 +905,7 @@ static int caam_probe(struct platform_device *pdev)
np = of_find_compatible_node(NULL, NULL, "fsl,imx-scu");
if (!np)
np = of_find_compatible_node(NULL, NULL, "fsl,imx8ulp-se-fw");
np = of_find_compatible_node(NULL, NULL, "fsl,imx8ulp-se");
ctrlpriv->scu_en = !!np;
of_node_put(np);