In one place we handle i.MX35 in the HAB code, but i.MX35 HAB support is not fully implemented. Just drop it. Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- drivers/hab/hab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hab/hab.c b/drivers/hab/hab.c index 75a8cca71e..a5996f0b97 100644 --- a/drivers/hab/hab.c +++ b/drivers/hab/hab.c @@ -239,7 +239,7 @@ static struct imx_hab_ops *imx_get_hab_ops(void) if (ops) return ops; - if (IS_ENABLED(CONFIG_HABV3) && (cpu_is_mx25() || cpu_is_mx35())) + if (IS_ENABLED(CONFIG_HABV3) && cpu_is_mx25()) ops = &imx_hab_ops_iim; else if (IS_ENABLED(CONFIG_HABV4) && cpu_is_mx6()) ops = &imx6_hab_ops_ocotp; -- 2.39.2