diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-05 15:39:53 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-09 16:32:26 -0500 |
commit | 64d6bfb660dbb1e29259ef141535c8d68dada2e5 (patch) | |
tree | 507ecbca0d80eb6ead58bb113f17600220f0e75f /net | |
parent | 418f2173b1bb15dca7f3933f5385abdae8beb509 (diff) | |
download | u-boot-64d6bfb660dbb1e29259ef141535c8d68dada2e5.tar.gz u-boot-64d6bfb660dbb1e29259ef141535c8d68dada2e5.tar.bz2 u-boot-64d6bfb660dbb1e29259ef141535c8d68dada2e5.zip |
Correct SPL uses of FASTBOOT_FLASH
This converts 3 usages of this option to the non-SPL form, since there is
no SPL_FASTBOOT_FLASH defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/fastboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/fastboot.c b/net/fastboot.c index 96bdf5486f..e9569d88d2 100644 --- a/net/fastboot.c +++ b/net/fastboot.c @@ -307,7 +307,7 @@ void fastboot_start_server(void) fastboot_our_port = CONFIG_UDP_FUNCTION_FASTBOOT_PORT; - if (CONFIG_IS_ENABLED(FASTBOOT_FLASH)) + if (IS_ENABLED(CONFIG_FASTBOOT_FLASH)) fastboot_set_progress_callback(fastboot_timed_send_info); net_set_udp_handler(fastboot_handler); |