diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-31 07:49:36 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-09 09:16:48 -0500 |
commit | ce30e3ff1e4b5abff5a9936776fe99190d705236 (patch) | |
tree | adf8ee799bdea7ef7cfaaa56a97c320aa38e92a9 /arch/arm | |
parent | f73a75618224b7e65a3e8a25b0b115bb1bee681b (diff) | |
download | u-boot-ce30e3ff1e4b5abff5a9936776fe99190d705236.tar.gz u-boot-ce30e3ff1e4b5abff5a9936776fe99190d705236.tar.bz2 u-boot-ce30e3ff1e4b5abff5a9936776fe99190d705236.zip |
scsi: Drop CONFIG_SYS_SCSI_MAX_DEVICE
This is defined based on two other CONFIGs for all boards except sandbox
and durian.
For sandbox the value does not matter. For durian the value seems
excessive.
Drop the option completely, to simplify configuration and reduce the
number of things we need to convert to Kconfig.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/arch-ls102xa/config.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/include/asm/arch-ls102xa/config.h b/arch/arm/include/asm/arch-ls102xa/config.h index 0e1f9e0c0d..489286ed8d 100644 --- a/arch/arm/include/asm/arch-ls102xa/config.h +++ b/arch/arm/include/asm/arch-ls102xa/config.h @@ -81,8 +81,6 @@ #define CONFIG_SCSI_AHCI_PLAT #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1 #define CONFIG_SYS_SCSI_MAX_LUN 1 -#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \ - CONFIG_SYS_SCSI_MAX_LUN) #ifdef CONFIG_DDR_SPD #define CONFIG_VERY_BIG_RAM #define CONFIG_SYS_LS1_DDR_BLOCK1_SIZE ((phys_size_t)2 << 30) |