diff options
Diffstat (limited to 'sys/scsi/ssvar.h')
-rw-r--r-- | sys/scsi/ssvar.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/sys/scsi/ssvar.h b/sys/scsi/ssvar.h index 6e40636cb7b..8801df6b898 100644 --- a/sys/scsi/ssvar.h +++ b/sys/scsi/ssvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssvar.h,v 1.5 1997/03/08 03:06:51 kstailey Exp $ */ +/* $OpenBSD: ssvar.h,v 1.6 1997/03/08 05:39:01 kstailey Exp $ */ /* $NetBSD: ssvar.h,v 1.2 1996/03/30 21:47:11 christos Exp $ */ /* @@ -65,15 +65,11 @@ struct ss_softc { int flags; #define SSF_TRIGGERED 0x01 /* read operation has been primed */ #define SSF_LOADED 0x02 /* parameters loaded */ - struct scsi_link *sc_link; /* contains our targ, lun, etc. */ + struct scsi_link *sc_link; /* contains our targ, lun, etc. */ struct scan_io sio; - struct buf buf_queue; /* the queue of pending IO operations */ -#define SS_Q_GET_BUFFER_SIZE 0x0001 /* poll for available data in ssread() */ -/* truncate to byte boundry is assumed by default unless one of these is set */ -#define SS_Q_PAD_TO_BYTE 0x0002 /* pad monochrome data to byte boundary */ -#define SS_Q_PAD_TO_WORD 0x0004 /* pad monochrome data to word boundary */ -#define SS_Q_THRESHOLD_FOLLOWS_BRIGHTNESS 0x0008 - struct ss_special *special; /* special handlers for spec. devices */ + struct buf buf_queue; /* the queue of pending IO operations */ + struct quirkdata *quirkdata; /* if we have a rogue entry */ + struct ss_special *special; /* special handlers for spec. devices */ }; /* |