diff options
author | Dan Williams <dan.j.williams@intel.com> | 2011-05-04 16:49:32 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-07-03 07:04:45 -0400 |
commit | c6d42257899505ea1982eba4c5e8bc7981e63e07 (patch) | |
tree | 2b7afd9dda3e2a2df4a661843bae960e1ed6e4f5 | |
parent | d6f6404c038b004fdb93f0676db934d69c524f7e (diff) |
isci: remove compile-time (Kconfig) silicon configuration
Pre-production silicon support is deprecated, and will be removed
completely in the future.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
-rw-r--r-- | drivers/scsi/Kconfig | 18 | ||||
-rw-r--r-- | drivers/scsi/isci/init.c | 8 |
2 files changed, 1 insertions, 25 deletions
diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig index e18938bebcd3..8d9dae89f065 100644 --- a/drivers/scsi/Kconfig +++ b/drivers/scsi/Kconfig | |||
@@ -843,24 +843,6 @@ config SCSI_ISCI | |||
843 | 843 | ||
844 | The experimental tag will be removed after the driver exits alpha | 844 | The experimental tag will be removed after the driver exits alpha |
845 | 845 | ||
846 | choice | ||
847 | prompt "Default Silicon Revision" | ||
848 | depends on SCSI_ISCI | ||
849 | default PBG_HBA_A2 | ||
850 | # temporary A-step silicon is pre-production | ||
851 | |||
852 | config PBG_HBA_BETA | ||
853 | bool "B0" | ||
854 | |||
855 | config PBG_HBA_A2 | ||
856 | bool "A2" | ||
857 | |||
858 | config PBG_HBA_A0 | ||
859 | bool "A0" | ||
860 | |||
861 | endchoice | ||
862 | |||
863 | |||
864 | config SCSI_GENERIC_NCR5380 | 846 | config SCSI_GENERIC_NCR5380 |
865 | tristate "Generic NCR5380/53c400 SCSI PIO support" | 847 | tristate "Generic NCR5380/53c400 SCSI PIO support" |
866 | depends on ISA && SCSI | 848 | depends on ISA && SCSI |
diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c index 10b60ab261e1..6c2d686fe7c0 100644 --- a/drivers/scsi/isci/init.c +++ b/drivers/scsi/isci/init.c | |||
@@ -87,15 +87,9 @@ MODULE_DEVICE_TABLE(pci, isci_id_table); | |||
87 | 87 | ||
88 | /* linux isci specific settings */ | 88 | /* linux isci specific settings */ |
89 | 89 | ||
90 | #if defined(CONFIG_PBG_HBA_A0) | ||
91 | int isci_si_rev = ISCI_SI_REVA0; | ||
92 | #elif defined(CONFIG_PBG_HBA_A2) | ||
93 | int isci_si_rev = ISCI_SI_REVA2; | 90 | int isci_si_rev = ISCI_SI_REVA2; |
94 | #else | ||
95 | int isci_si_rev = ISCI_SI_REVB0; | ||
96 | #endif | ||
97 | module_param(isci_si_rev, int, 0); | 91 | module_param(isci_si_rev, int, 0); |
98 | MODULE_PARM_DESC(isci_si_rev, "override default si rev (0: A0 1: A2 2: B0)"); | 92 | MODULE_PARM_DESC(isci_si_rev, "(deprecated) override default si rev (0: A0 1: A2 2: B0)"); |
99 | 93 | ||
100 | unsigned char no_outbound_task_to = 20; | 94 | unsigned char no_outbound_task_to = 20; |
101 | module_param(no_outbound_task_to, byte, 0); | 95 | module_param(no_outbound_task_to, byte, 0); |