summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2019-11-26 11:31:25 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2019-11-27 09:33:15 +0100
commit842c8e3cc107d8ab2bb9099012d796dabb48d7cd (patch)
treebee5f6f5c920e0fc043837cec86e796acac79b9f
parentb302cb15e83b28315d2fb4336629670e3b0bd205 (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);