diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2024-02-13 16:17:40 +0100 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2024-02-16 12:57:55 +0100 |
commit | 7ebceef3cb18e4ade367a295ee4d1900f3440430 (patch) | |
tree | 308f0ff01ce6f859eec4165a6e27aa44f7d11cf1 | |
parent | 03980be2951c1a4b6ec8968d0744d5f00f670fac (diff) | |
download | barebox-7ebceef3cb18.tar.gz barebox-7ebceef3cb18.tar.xz |
hab: drop i.MX35
In one place we handle i.MX35 in the HAB code, but i.MX35 HAB support is
not fully implemented. Just drop it.
Link: https://lore.barebox.org/20240213151744.307958-3-s.hauer@pengutronix.de
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r-- | drivers/hab/hab.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |