aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dpt
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1998-08-06 20:57:33 +0000
committerEivind Eklund <eivind@FreeBSD.org>1998-08-06 20:57:33 +0000
commit7609bd2b9e8703eef5c73140e3bbe2afbd3cce22 (patch)
tree30a18fa884fc557a28838d274a1f8f91c47967ff /sys/dev/dpt
parent48a72a5522f57e7eb5a54d4c7d7b323eb54013a8 (diff)
Notes
Diffstat (limited to 'sys/dev/dpt')
-rw-r--r--sys/dev/dpt/dpt_scsi.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/sys/dev/dpt/dpt_scsi.c b/sys/dev/dpt/dpt_scsi.c
index a0a2cc61d67c..ca24ea425b82 100644
--- a/sys/dev/dpt/dpt_scsi.c
+++ b/sys/dev/dpt/dpt_scsi.c
@@ -64,7 +64,7 @@
* 3. dpt_handle_timeouts potentially inserts into the queue
*/
-#ident "$Id: dpt_scsi.c,v 1.32 1998/08/03 16:45:12 root Exp root $"
+#ident "$Id: dpt_scsi.c,v 1.8 1998/08/05 00:54:36 eivind Exp $"
#define _DPT_C_
@@ -389,20 +389,14 @@ dpt_raid_busy(dpt_softc_t * dpt)
*/
static void
-dpt_reset_hba(int minor)
+dpt_reset_hba(dpt_softc_t *dpt)
{
- dpt_softc_t *dpt;
eata_ccb_t *ccb;
int ospl;
dpt_ccb_t dccb, *dccbp;
int result;
struct scsi_xfer *xs;
- if ((dpt = dpt_minor2softc(minor)) == NULL) {
- printf("DPT: Ignoring invalid minor %d in dpt_reset_hba\n", minor);
- return;
- }
-
/* Prepare a control block. The SCSI command part is immaterial */
dccb.xs = NULL;
dccb.flags = 0;
@@ -3246,7 +3240,7 @@ static INLINE_Q void
dpt_Qpush_free(dpt_softc_t * dpt, dpt_ccb_t * ccb)
{
#ifdef DPT_FREELIST_IS_STACK
- TAILQ_INSERT_HEAD(&dpt->free_ccbs, ccb, links)
+ TAILQ_INSERT_HEAD(&dpt->free_ccbs, ccb, links);
#else
TAILQ_INSERT_TAIL(&dpt->free_ccbs, ccb, links);
#endif