summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:36:40 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 00:32:26 +0300
commitb8ed1a82d0b30e6763d00c361f2f72ed2f73efa2 (patch)
treed80a9427c7ae070ac652c62190580dbfc18fb2e4 /include
parent39c0da4186bf251e16b8257657639596aaadf1f9 (diff)
downloadu-boot-b8ed1a82d0b30e6763d00c361f2f72ed2f73efa2.tar.xz
Correct SPL uses of CMD_SCSI
This converts 2 usages of this option to the non-SPL form, since there is no SPL_CMD_SCSI defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r--include/configs/rockchip-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
index 210d8c9a26..fda9191f6b 100644
--- a/include/configs/rockchip-common.h
+++ b/include/configs/rockchip-common.h
@@ -26,7 +26,7 @@
#define BOOT_TARGET_NVME(func)
#endif
-#if CONFIG_IS_ENABLED(CMD_SCSI)
+#if IS_ENABLED(CONFIG_CMD_SCSI)
#define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0)
#else
#define BOOT_TARGET_SCSI(func)