Skip to content

Commit ac8aff0

Browse files
johnernbergherbertx
authored andcommitted
crypto: caam - Support iMX8QXP and variants thereof
The iMX8QXP (and variants such as the QX, DX, DXP) all identify as iMX8QXP. They have the exact same restrictions as the supported iMX8QM introduced at commit 61bb8db ("crypto: caam - Add support for i.MX8QM") Loosen the check a little bit with a wildcard to also match the iMX8QXP and its variants. Signed-off-by: John Ernberg <john.ernberg@actia.se> Reviewed-by: Frank Li <Frank.Li@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
1 parent 5ffc47f commit ac8aff0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/crypto/caam/ctrl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ static const struct soc_device_attribute caam_imx_soc_table[] = {
573573
{ .soc_id = "i.MX7*", .data = &caam_imx7_data },
574574
{ .soc_id = "i.MX8M*", .data = &caam_imx7_data },
575575
{ .soc_id = "i.MX8ULP", .data = &caam_imx8ulp_data },
576-
{ .soc_id = "i.MX8QM", .data = &caam_imx8ulp_data },
576+
{ .soc_id = "i.MX8Q*", .data = &caam_imx8ulp_data },
577577
{ .soc_id = "VF*", .data = &caam_vf610_data },
578578
{ .family = "Freescale i.MX" },
579579
{ /* sentinel */ }

0 commit comments

Comments
 (0)