diff options
author | Simon Glass | 2023-02-05 17:54:10 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-10 07:41:41 -0500 |
commit | 41782a9c09353c7a5467a96a2c340273c2f1a90a (patch) | |
tree | bfb830871b2ddfc92d48dfe54137a81e10bce693 /board/ti/am57xx | |
parent | 83f3d121ddf5c2f0c3ffc5e0cd01a67d31c28bfd (diff) |
Correct SPL uses of FASTBOOT
This converts 3 usages of this option to the non-SPL form, since there is
no SPL_FASTBOOT defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/ti/am57xx')
-rw-r--r-- | board/ti/am57xx/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c index 0e57ee566b3..9ea507a8e96 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -1172,7 +1172,7 @@ int board_fit_config_name_match(const char *name) } #endif -#if CONFIG_IS_ENABLED(FASTBOOT) && !CONFIG_IS_ENABLED(ENV_IS_NOWHERE) +#if IS_ENABLED(CONFIG_FASTBOOT) && !CONFIG_IS_ENABLED(ENV_IS_NOWHERE) int fastboot_set_reboot_flag(enum fastboot_reboot_reason reason) { if (reason != FASTBOOT_REBOOT_REASON_BOOTLOADER) |