summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:39:56 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 00:32:26 +0300
commit0d9da97daae6aa8f9cb1e9ae9f989e9a0c2cc8f1 (patch)
tree8b00a2a80272b6cce00c86cfe8f90723cc0cf7bb
parent64d6bfb660dbb1e29259ef141535c8d68dada2e5 (diff)
downloadu-boot-0d9da97daae6aa8f9cb1e9ae9f989e9a0c2cc8f1.tar.xz
Correct SPL use of FASTBOOT_MMC_USER_SUPPORT
This converts 1 usage of this option to the non-SPL form, since there is no SPL_FASTBOOT_MMC_USER_SUPPORT defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--drivers/fastboot/fb_mmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/fastboot/fb_mmc.c b/drivers/fastboot/fb_mmc.c
index 033c510bc0..a06c590234 100644
--- a/drivers/fastboot/fb_mmc.c
+++ b/drivers/fastboot/fb_mmc.c
@@ -588,7 +588,7 @@ void fastboot_mmc_flash_write(const char *cmd, void *download_buffer,
}
#endif
-#if CONFIG_IS_ENABLED(FASTBOOT_MMC_USER_SUPPORT)
+#if IS_ENABLED(CONFIG_FASTBOOT_MMC_USER_SUPPORT)
if (strcmp(cmd, CONFIG_FASTBOOT_MMC_USER_NAME) == 0) {
dev_desc = fastboot_mmc_get_dev(response);
if (!dev_desc)