Commit c6d42257 authored by Dan Williams's avatar Dan Williams

isci: remove compile-time (Kconfig) silicon configuration

Pre-production silicon support is deprecated, and will be removed
completely in the future.
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent d6f6404c
...@@ -843,24 +843,6 @@ config SCSI_ISCI ...@@ -843,24 +843,6 @@ config SCSI_ISCI
The experimental tag will be removed after the driver exits alpha The experimental tag will be removed after the driver exits alpha
choice
prompt "Default Silicon Revision"
depends on SCSI_ISCI
default PBG_HBA_A2
# temporary A-step silicon is pre-production
config PBG_HBA_BETA
bool "B0"
config PBG_HBA_A2
bool "A2"
config PBG_HBA_A0
bool "A0"
endchoice
config SCSI_GENERIC_NCR5380 config SCSI_GENERIC_NCR5380
tristate "Generic NCR5380/53c400 SCSI PIO support" tristate "Generic NCR5380/53c400 SCSI PIO support"
depends on ISA && SCSI depends on ISA && SCSI
......
...@@ -87,15 +87,9 @@ MODULE_DEVICE_TABLE(pci, isci_id_table); ...@@ -87,15 +87,9 @@ MODULE_DEVICE_TABLE(pci, isci_id_table);
/* linux isci specific settings */ /* linux isci specific settings */
#if defined(CONFIG_PBG_HBA_A0)
int isci_si_rev = ISCI_SI_REVA0;
#elif defined(CONFIG_PBG_HBA_A2)
int isci_si_rev = ISCI_SI_REVA2; int isci_si_rev = ISCI_SI_REVA2;
#else
int isci_si_rev = ISCI_SI_REVB0;
#endif
module_param(isci_si_rev, int, 0); module_param(isci_si_rev, int, 0);
MODULE_PARM_DESC(isci_si_rev, "override default si rev (0: A0 1: A2 2: B0)"); MODULE_PARM_DESC(isci_si_rev, "(deprecated) override default si rev (0: A0 1: A2 2: B0)");
unsigned char no_outbound_task_to = 20; unsigned char no_outbound_task_to = 20;
module_param(no_outbound_task_to, byte, 0); module_param(no_outbound_task_to, byte, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment