patch-2.4.20 linux-2.4.20/drivers/scsi/dpt_i2o.c
Next file: linux-2.4.20/drivers/scsi/eata.c
Previous file: linux-2.4.20/drivers/scsi/dec_esp.c
Back to the patch index
Back to the overall index
- Lines: 30
- Date:
Thu Nov 28 15:53:14 2002
- Orig file:
linux-2.4.19/drivers/scsi/dpt_i2o.c
- Orig date:
Fri Nov 9 14:05:06 2001
diff -urN linux-2.4.19/drivers/scsi/dpt_i2o.c linux-2.4.20/drivers/scsi/dpt_i2o.c
@@ -85,7 +85,7 @@
#elif defined(__alpha__)
PROC_ALPHA ,
#else
- (-1),
+ (-1),(-1)
#endif
FT_HBADRVR, 0, OEM_DPT, OS_LINUX, CAP_OVERLAP, DEV_ALL,
ADF_ALL_SC5, 0, 0, DPT_VERSION, DPT_REVISION, DPT_SUBREVISION,
@@ -110,10 +110,6 @@
static adpt_hba* hba_chain = NULL;
static int hba_count = 0;
-// Debug flags to be put into the HBA flags field when initialized
-// Make sure to enable DEBUG_PRINT for these flags to work
-static unsigned long DebugFlags = HBA_FLAGS_DBG_SCAN_B | HBA_FLAGS_DBG_FLAGS_MASK;
-
static struct file_operations adpt_fops = {
ioctl: adpt_ioctl,
open: adpt_open,
@@ -1141,7 +1137,8 @@
// to support async LCT get
wait_data->next = adpt_post_wait_queue;
adpt_post_wait_queue = wait_data;
- adpt_post_wait_id = (++adpt_post_wait_id & 0x7fff);
+ adpt_post_wait_id++;
+ adpt_post_wait_id = (adpt_post_wait_id & 0x7fff);
wait_data->id = adpt_post_wait_id;
spin_unlock_irqrestore(&adpt_post_wait_lock, flags);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)