diff options
author | Simon Glass | 2023-02-05 15:36:46 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-09 16:32:26 -0500 |
commit | 93bb62abaf0bdc5003a7dc40f266db29ff0b9b13 (patch) | |
tree | ff2a43bdb92ad496f642b7f25f4c99fbf8e95d15 /include/configs/rockchip-common.h | |
parent | b15a4af8105e2a6355333e139d827be558017ae0 (diff) |
Correct SPL uses of CMD_USB
This converts 8 usages of this option to the non-SPL form, since there is
no SPL_CMD_USB defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/rockchip-common.h')
-rw-r--r-- | include/configs/rockchip-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h index e0d38ccc1aa..ff8123dabd6 100644 --- a/include/configs/rockchip-common.h +++ b/include/configs/rockchip-common.h @@ -32,7 +32,7 @@ #define BOOT_TARGET_SCSI(func) #endif -#if CONFIG_IS_ENABLED(CMD_USB) +#if IS_ENABLED(CONFIG_CMD_USB) #define BOOT_TARGET_USB(func) func(USB, usb, 0) #else #define BOOT_TARGET_USB(func) |