diff options
author | Simon Glass <sjg@chromium.org> | 2017-06-14 21:28:22 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-07-11 10:08:19 -0600 |
commit | b8beb6b463676f586a5481993590cd8a6e8c5855 (patch) | |
tree | 2f6a351a2832d76624172b17d87ef7dabc2e1553 /common | |
parent | fedb428c5beb8776451118f5adc976770a526a33 (diff) | |
download | u-boot-b8beb6b463676f586a5481993590cd8a6e8c5855.tar.gz u-boot-b8beb6b463676f586a5481993590cd8a6e8c5855.tar.xz u-boot-b8beb6b463676f586a5481993590cd8a6e8c5855.zip |
scsi: Drop sym53c8xx driver
This driver is for a PowerPC board that will likely be removed soon.
Rather than converting it to driver model, drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/scsi.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/common/scsi.c b/common/scsi.c index c456f5a717..4896fb9350 100644 --- a/common/scsi.c +++ b/common/scsi.c @@ -17,14 +17,7 @@ #ifdef CONFIG_SCSI_DEV_LIST #define SCSI_DEV_LIST CONFIG_SCSI_DEV_LIST #else -#ifdef CONFIG_SCSI_SYM53C8XX -#define SCSI_VEND_ID 0x1000 -#ifndef CONFIG_SCSI_DEV_ID -#define SCSI_DEV_ID 0x0001 -#else -#define SCSI_DEV_ID CONFIG_SCSI_DEV_ID -#endif -#elif defined CONFIG_SATA_ULI5288 +#ifdef CONFIG_SATA_ULI5288 #define SCSI_VEND_ID 0x10b9 #define SCSI_DEV_ID 0x5288 |