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/ti/omap3evm/evm.c | |
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/ti/omap3evm/evm.c')
-rw-r--r-- | board/ti/omap3evm/evm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/ti/omap3evm/evm.c b/board/ti/omap3evm/evm.c index 4eb08add256..8803643b032 100644 --- a/board/ti/omap3evm/evm.c +++ b/board/ti/omap3evm/evm.c @@ -117,7 +117,7 @@ int spl_start_uboot(void) } #endif /* CONFIG_SPL_OS_BOOT */ -#if defined(CONFIG_SPL_BUILD) +#if defined(CONFIG_XPL_BUILD) /* * Routine: get_board_mem_timings * Description: If we use SPL then there is no x-loader nor config header @@ -150,7 +150,7 @@ void get_board_mem_timings(struct board_sdrc_timings *timings) timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz; timings->mr = MICRON_V_MR_165; } -#endif /* CONFIG_SPL_BUILD */ +#endif /* CONFIG_XPL_BUILD */ /* * Routine: misc_init_r |