Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c6d42257 authored by Dan Williams's avatar Dan Williams
Browse files

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
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
@@ -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
+1 −7
Original line number Diff line number Diff line
@@ -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);