]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL uses of CMD_NVME
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:36:37 +0000 (15:36 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:26 +0000 (16:32 -0500)
This converts 3 usages of this option to the non-SPL form, since there is
no SPL_CMD_NVME defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
include/configs/apple.h
include/configs/rockchip-common.h

index fe7d11bcdb38d13fd207edfcbc5c8f1579a6722a..ee6e1169b3b58e05be595b987c1030cc0cdb7aa0 100644 (file)
@@ -9,7 +9,7 @@
        "stdout=serial,vidconsole\0" \
        "stderr=serial,vidconsole\0"
 
-#if CONFIG_IS_ENABLED(CMD_NVME)
+#if IS_ENABLED(CONFIG_CMD_NVME)
        #define BOOT_TARGET_NVME(func) func(NVME, nvme, 0)
 #else
        #define BOOT_TARGET_NVME(func)
index ae8c2d7718cfef2b3b8e11d082f1527ea45dbdd6..210d8c9a2684ec15c4a18ff81a9b4759a495bebc 100644 (file)
@@ -20,7 +20,7 @@
        #define BOOT_TARGET_MMC(func)
 #endif
 
-#if CONFIG_IS_ENABLED(CMD_NVME)
+#if IS_ENABLED(CONFIG_CMD_NVME)
        #define BOOT_TARGET_NVME(func) func(NVME, nvme, 0)
 #else
        #define BOOT_TARGET_NVME(func)