Skip to content

Commit

Permalink
isci: remove compile-time (Kconfig) silicon configuration
Browse files Browse the repository at this point in the history
Pre-production silicon support is deprecated, and will be removed
completely in the future.

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
  • Loading branch information
Dan Williams committed Jul 3, 2011
1 parent d6f6404 commit c6d4225
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 25 deletions.
18 changes: 0 additions & 18 deletions drivers/scsi/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -843,24 +843,6 @@ config SCSI_ISCI

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
tristate "Generic NCR5380/53c400 SCSI PIO support"
depends on ISA && SCSI
Expand Down
8 changes: 1 addition & 7 deletions drivers/scsi/isci/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,9 @@ MODULE_DEVICE_TABLE(pci, isci_id_table);

/* 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;
#else
int isci_si_rev = ISCI_SI_REVB0;
#endif
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;
module_param(no_outbound_task_to, byte, 0);
Expand Down

0 comments on commit c6d4225

Please sign in to comment.