summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2019-11-26 11:31:25 +0100
committerMax Krummenacher <max.krummenacher@toradex.com>2020-03-05 19:22:22 +0100
commitc82e3b0c94d17ac10a5aeb192a011447b74bf727 (patch)
tree59a889b13bf3ddcee0207b7c1ca114f549e1ac77
parent898401a50a9300c61806efb5789e1baddc0ac3f2 (diff)
tdx-cfg-block: fix colibri-imx8x define
Fix CONFIG_TARGET_COLIBRI_IMX8QXP vs. CONFIG_TARGET_COLIBRI_IMX8X ifdefs. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
-rw-r--r--board/toradex/common/tdx-cfg-block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c
index 905327bdb8..4e3c6e6b06 100644
--- a/board/toradex/common/tdx-cfg-block.c
+++ b/board/toradex/common/tdx-cfg-block.c
@@ -329,7 +329,7 @@ static int get_cfgblock_interactive(void)
#if defined(CONFIG_TARGET_APALIS_IMX8) || \
defined(CONFIG_TARGET_APALIS_IMX8QXP) || \
defined(CONFIG_TARGET_COLIBRI_IMX6ULL) || \
- defined(CONFIG_TARGET_COLIBRI_IMX8X)
+ defined(CONFIG_TARGET_COLIBRI_IMX8QXP)
sprintf(message, "Does the module have Wi-Fi / Bluetooth? " \
"[y/N] ");
len = cli_readline(message);
@@ -337,7 +337,7 @@ static int get_cfgblock_interactive(void)
#endif
#if defined(CONFIG_TARGET_APALIS_IMX8QXP) || \
- defined(CONFIG_TARGET_COLIBRI_IMX8X)
+ defined(CONFIG_TARGET_COLIBRI_IMX8QXP)
sprintf(message, "Is the module family type Apalis (A) or Colibri (C)? " \
"[A/C] ");
len = cli_readline(message);