diff options
author | Simon Glass <sjg@chromium.org> | 2024-09-29 19:49:47 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-11 11:44:48 -0600 |
commit | dac3ce976a9b06be5aadbd857c4b64a8c521c6d4 (patch) | |
tree | c6990967a19a9ae6112711010086b246be590880 /board/technexion/pico-imx7d | |
parent | bef9fdbed2e525ce9264d2ae2fbcb37db7472052 (diff) |
board: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD
Use the new symbol to refer to any 'SPL' build, including TPL and VPL
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/technexion/pico-imx7d')
-rw-r--r-- | board/technexion/pico-imx7d/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/technexion/pico-imx7d/spl.c b/board/technexion/pico-imx7d/spl.c index 8f219f76c60..cb60d3be420 100644 --- a/board/technexion/pico-imx7d/spl.c +++ b/board/technexion/pico-imx7d/spl.c @@ -21,7 +21,7 @@ #include <fsl_esdhc_imx.h> #include <spl.h> -#if defined(CONFIG_SPL_BUILD) +#if defined(CONFIG_XPL_BUILD) #ifdef CONFIG_SPL_OS_BOOT int spl_start_uboot(void) |