patch-2.3.27 linux/drivers/scsi/pci2000.c
Next file: linux/drivers/scsi/pci2000.h
Previous file: linux/drivers/scsi/pas16.c
Back to the patch index
Back to the overall index
- Lines: 113
- Date:
Thu Nov 11 16:57:30 1999
- Orig file:
v2.3.26/linux/drivers/scsi/pci2000.c
- Orig date:
Fri Sep 10 23:57:32 1999
diff -u --recursive --new-file v2.3.26/linux/drivers/scsi/pci2000.c linux/drivers/scsi/pci2000.c
@@ -53,15 +53,7 @@
#include "pci2000.h"
#include "psi_roy.h"
-#if LINUX_VERSION_CODE >= LINUXVERSION(2,1,95)
#include <linux/spinlock.h>
-#endif
-#if LINUX_VERSION_CODE < LINUXVERSION(2,1,93)
-#include <linux/bios32.h>
-#endif
-
-struct proc_dir_entry Proc_Scsi_Pci2000 =
- { PROC_SCSI_PCI2000, 7, "pci2000", S_IFDIR | S_IRUGO | S_IXUGO, 2 };
//#define DEBUG 1
@@ -240,23 +232,13 @@
int pun;
int bus;
int z;
-#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
- int flags;
-#else /* version >= v2.1.95 */
unsigned long flags;
-#endif /* version >= v2.1.95 */
-#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
- /* Disable interrupts, if they aren't already disabled. */
- save_flags (flags);
- cli ();
-#else /* version >= v2.1.95 */
/*
* Disable interrupts, if they aren't already disabled and acquire
* the I/O spinlock.
*/
spin_lock_irqsave (&io_request_lock, flags);
-#endif /* version >= v2.1.95 */
DEB(printk ("\npci2000 recieved interrupt "));
for ( z = 0; z < NumAdapters; z++ ) // scan for interrupt to process
@@ -345,20 +327,12 @@
OpDone (SCpnt, DID_OK << 16);
irq_return:;
-#if LINUX_VERSION_CODE < LINUXVERSION(2,1,95)
- /*
- * Restore the original flags which will enable interrupts
- * if and only if they were enabled on entry.
- */
- restore_flags (flags);
-#else /* version >= v2.1.95 */
/*
* Release the I/O spinlock and restore the original flags
* which will enable interrupts if and only if they were
* enabled on entry.
*/
spin_unlock_irqrestore (&io_request_lock, flags);
-#endif /* version >= v2.1.95 */
}
/****************************************************************
* Name: Pci2000_QueueCommand
@@ -615,27 +589,15 @@
PADAPTER2000 padapter;
int z, zz;
int setirq;
-#if LINUX_VERSION_CODE > LINUXVERSION(2,1,92)
struct pci_dev *pdev = NULL;
-#else
- UCHAR pci_bus, pci_device_fn;
-#endif
-#if LINUX_VERSION_CODE > LINUXVERSION(2,1,92)
if ( !pci_present () )
-#else
- if ( !pcibios_present () )
-#endif
{
printk ("pci2000: PCI BIOS not present\n");
return 0;
}
-#if LINUX_VERSION_CODE > LINUXVERSION(2,1,92)
while ( (pdev = pci_find_device (VENDOR_PSI, DEVICE_ROY_1, pdev)) != NULL )
-#else
- while ( !pcibios_find_device (VENDOR_PSI, DEVICE_ROY_1, found, &pci_bus, &pci_device_fn) )
-#endif
{
pshost = scsi_register (tpnt, sizeof(ADAPTER2000));
padapter = HOSTDATA(pshost);
@@ -658,11 +620,7 @@
if ( WaitReady (padapter) )
goto unregister;
-#if LINUX_VERSION_CODE > LINUXVERSION(2,1,92)
pshost->irq = pdev->irq;
-#else
- pcibios_read_config_byte (pci_bus, pci_device_fn, PCI_INTERRUPT_LINE, &pshost->irq);
-#endif
setirq = 1;
padapter->irqOwned = 0;
for ( z = 0; z < installed; z++ ) // scan for shared interrupts
@@ -756,11 +714,7 @@
PADAPTER2000 padapter = HOSTDATA (pshost);
if ( padapter->irqOwned )
-#if LINUX_VERSION_CODE < LINUXVERSION(1,3,70)
- free_irq (pshost->irq);
-#else /* version >= v1.3.70 */
free_irq (pshost->irq, padapter);
-#endif /* version >= v1.3.70 */
release_region (pshost->io_port, pshost->n_io_port);
scsi_unregister(pshost);
return 0;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)