diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-06-27 03:34:30 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-06-27 03:34:30 +0000 |
commit | ea62cbbfebe57392b27274ce95e2d59b4f88ddc1 (patch) | |
tree | 0d880a468817725a9b8c77f05ad16f973558f694 /sys/dev/pci/mpii.c | |
parent | d9dbf15676a87645f76cc68576f597ffe08db835 (diff) |
"Believe it or not," nothing uses scsi_xfer's req_sense_length field
in any meaningful way, so just get rid of it.
ok krw@, dlg@
Diffstat (limited to 'sys/dev/pci/mpii.c')
-rw-r--r-- | sys/dev/pci/mpii.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/mpii.c b/sys/dev/pci/mpii.c index 33be7c9f717..7f602bce094 100644 --- a/sys/dev/pci/mpii.c +++ b/sys/dev/pci/mpii.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpii.c,v 1.22 2010/06/27 01:47:36 dlg Exp $ */ +/* $OpenBSD: mpii.c,v 1.23 2010/06/27 03:34:29 matthew Exp $ */ /* * Copyright (c) 2010 Mike Belopuhov <mkb@crypt.org.ru> * Copyright (c) 2009 James Giannoules @@ -4408,8 +4408,7 @@ mpii_scsi_cmd(struct scsi_xfer *xs) } DNPRINTF(MPII_D_CMD, "%s: mpii_scsi_cmd(): opcode: %02x " - "datalen: %d req_sense_len: %d\n", DEVNAME(sc), xs->cmd->opcode, - xs->datalen, xs->req_sense_length); + "datalen: %d\n", DEVNAME(sc), xs->cmd->opcode, xs->datalen); s = splbio(); mpii_start(sc, ccb); |