diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2009-12-01 01:50:36 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2009-12-01 01:50:36 +0000 |
commit | 4e2686172affb675337d24909f61d8ba3fbfc083 (patch) | |
tree | 5eed3ac4abf0e7f02bf84edd1dcc98247b7f4c34 /sys/scsi/scsi_base.c | |
parent | 56901e51ebf1db9a1c61f31f83c5b6e63d702f20 (diff) |
properly handle all xs states that can be returned by an adapter in sd.
requested by krw@ after spending a week munging through my code.
Diffstat (limited to 'sys/scsi/scsi_base.c')
-rw-r--r-- | sys/scsi/scsi_base.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/scsi/scsi_base.c b/sys/scsi/scsi_base.c index f844d955881..97b74b62c0e 100644 --- a/sys/scsi/scsi_base.c +++ b/sys/scsi/scsi_base.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsi_base.c,v 1.144 2009/12/01 01:40:02 dlg Exp $ */ +/* $OpenBSD: scsi_base.c,v 1.145 2009/12/01 01:50:35 dlg Exp $ */ /* $NetBSD: scsi_base.c,v 1.43 1997/04/02 02:29:36 mycroft Exp $ */ /* @@ -53,7 +53,6 @@ static __inline void asc2ascii(u_int8_t, u_int8_t ascq, char *result, size_t len); int sc_err1(struct scsi_xfer *); -int scsi_interpret_sense(struct scsi_xfer *); char *scsi_decode_sense(struct scsi_sense_data *, int); void scsi_xs_done(struct scsi_xfer *); |