Commit d6933df9 authored by Adrian Bunk's avatar Adrian Bunk Committed by James Bottomley
Browse files

[SCSI] remove the obsolete SCSI qlogicisp driver



The SCSI qlogicisp driver is both marked BROKEN and superseded by the
qla1280 driver.

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 4065a413
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -52,8 +52,6 @@ ppa.txt
	- info on driver for IOmega zip drive
qlogicfas.txt
	- info on driver for QLogic FASxxx based adapters
qlogicisp.txt
	- info on driver for QLogic ISP 1020 based adapters
scsi-generic.txt
	- info on the sg driver for generic (non-disk/CD/tape) SCSI devices.
scsi.txt
+1 −2
Original line number Diff line number Diff line
@@ -11,8 +11,7 @@ Qlogic boards:
	* IQ-PCI-10
	* IQ-PCI-D

is provided by the qlogicisp.c driver.  Check README.qlogicisp for
details.
is provided by the qla1280 driver.

Nor does it support the PCI-Basic, which is supported by the
'am53c974' driver.

Documentation/scsi/qlogicisp.txt

deleted100644 → 0
+0 −30
Original line number Diff line number Diff line
Notes for the QLogic ISP1020 PCI SCSI Driver:

This driver works well in practice, but does not support disconnect/
reconnect, which makes using it with tape drives impractical.

It should work for most host adaptors with the ISP1020 chip.  The
QLogic Corporation produces several PCI SCSI adapters which should
work:

	* IQ-PCI
	* IQ-PCI-10
	* IQ-PCI-D

This driver may work with boards containing the ISP1020A or ISP1040A
chips, but that has not been tested.

This driver will NOT work with:

	* ISA or VL Bus Qlogic cards (they use the 'qlogicfas' driver)
	* PCI-basic (it uses the 'am53c974' driver)

Much thanks to QLogic's tech support for providing the latest ISP1020
firmware, and for taking the time to review my code.

Erik Moe
ehm@cris.com

Revised:
Michael A. Griffith
grif@cs.ucr.edu
+0 −29
Original line number Diff line number Diff line
@@ -1295,27 +1295,6 @@ config SCSI_QLOGIC_FAS
	  To compile this driver as a module, choose M here: the
	  module will be called qlogicfas.

config SCSI_QLOGIC_ISP
	tristate "Qlogic ISP SCSI support (old driver)"
	depends on PCI && SCSI && BROKEN
	---help---
	  This driver works for all QLogic PCI SCSI host adapters (IQ-PCI,
	  IQ-PCI-10, IQ_PCI-D) except for the PCI-basic card.  (This latter
	  card is supported by the "AM53/79C974 PCI SCSI" driver.)

	  If you say Y here, make sure to choose "BIOS" at the question "PCI
	  access mode".

	  Please read the file <file:Documentation/scsi/qlogicisp.txt>.  You
	  should also read the SCSI-HOWTO, available from
	  <http://www.tldp.org/docs.html#howto>.

	  To compile this driver as a module, choose M here: the
	  module will be called qlogicisp.

	  These days the hardware is also supported by the more modern qla1280
	  driver.  In doubt use that one instead of qlogicisp.

config SCSI_QLOGIC_FC
	tristate "Qlogic ISP FC SCSI support"
	depends on PCI && SCSI
@@ -1342,14 +1321,6 @@ config SCSI_QLOGIC_1280
	  To compile this driver as a module, choose M here: the
	  module will be called qla1280.

config SCSI_QLOGIC_1280_1040
	bool "Qlogic QLA 1020/1040 SCSI support"
	depends on SCSI_QLOGIC_1280 && SCSI_QLOGIC_ISP!=y
	help
	  Say Y here if you have a QLogic ISP1020/1040 SCSI host adapter and
	  do not want to use the old driver.  This option enables support in
	  the qla1280 driver for those host adapters.

config SCSI_QLOGICPTI
	tristate "PTI Qlogic, ISP Driver"
	depends on SBUS && SCSI
+0 −1
Original line number Diff line number Diff line
@@ -78,7 +78,6 @@ obj-$(CONFIG_SCSI_NCR_Q720) += NCR_Q720_mod.o
obj-$(CONFIG_SCSI_SYM53C416)	+= sym53c416.o
obj-$(CONFIG_SCSI_QLOGIC_FAS)	+= qlogicfas408.o	qlogicfas.o
obj-$(CONFIG_PCMCIA_QLOGIC)	+= qlogicfas408.o
obj-$(CONFIG_SCSI_QLOGIC_ISP)	+= qlogicisp.o 
obj-$(CONFIG_SCSI_QLOGIC_FC)	+= qlogicfc.o 
obj-$(CONFIG_SCSI_QLOGIC_1280)	+= qla1280.o 
obj-$(CONFIG_SCSI_QLA2XXX)	+= qla2xxx/
Loading