mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 08:59:33 +00:00
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>
This commit is contained in:
parent
39c0da4186
commit
b8ed1a82d0
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
||||||
#define BOOT_TARGET_NVME(func)
|
#define BOOT_TARGET_NVME(func)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CONFIG_IS_ENABLED(CMD_SCSI)
|
#if IS_ENABLED(CONFIG_CMD_SCSI)
|
||||||
#define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0)
|
#define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0)
|
||||||
#else
|
#else
|
||||||
#define BOOT_TARGET_SCSI(func)
|
#define BOOT_TARGET_SCSI(func)
|
||||||
|
|
Loading…
Reference in a new issue