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/imx8mm-cl-iot-gate.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/imx8mm-cl-iot-gate.h')
-rw-r--r-- | include/configs/imx8mm-cl-iot-gate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/imx8mm-cl-iot-gate.h b/include/configs/imx8mm-cl-iot-gate.h index 1bb9a918e7d..09d87cf214b 100644 --- a/include/configs/imx8mm-cl-iot-gate.h +++ b/include/configs/imx8mm-cl-iot-gate.h @@ -38,7 +38,7 @@ # define BOOT_TARGET_MMC(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) |