diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-15 10:51:37 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-15 10:51:37 +0000 |
commit | c30829eddbd1203f1d5a231e9c5a28a40e8d367e (patch) | |
tree | 2eda38af8cb249778242cb9805e515b86ec5b9bb | |
parent | d2f5cf6773cab1fd3a6fe38c0a255ae459b109c0 (diff) |
Add quirk, type for AT3 scanner (ViewStation 32)
-rw-r--r-- | sys/scsi/ss.c | 11 | ||||
-rw-r--r-- | sys/sys/scanio.h | 3 |
2 files changed, 12 insertions, 2 deletions
diff --git a/sys/scsi/ss.c b/sys/scsi/ss.c index 0a944917e3b..21d70ebdde4 100644 --- a/sys/scsi/ss.c +++ b/sys/scsi/ss.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ss.c,v 1.32 1997/04/05 23:34:20 kstailey Exp $ */ +/* $OpenBSD: ss.c,v 1.33 1997/04/15 10:51:36 tholo Exp $ */ /* $NetBSD: ss.c,v 1.10 1996/05/05 19:52:55 christos Exp $ */ /* @@ -142,6 +142,15 @@ void get_buffer_status __P((struct ss_softc *, struct buf *)); struct ss_quirk_inquiry_pattern ss_quirk_patterns[] = { {{T_SCANNER, T_FIXED, + "ULTIMA ", "AT3 1.60 ", " "}, { + "Ultima AT3", + SS_Q_HALFTONE | + SS_Q_PADDING_TYPE, + 0, 0, 0, 0, { 3, 0 }, 0, 0, + ULTIMA_AT3, + NULL, NULL, NULL + }}, + {{T_SCANNER, T_FIXED, "ULTIMA ", "A6000C PLUS ", " "}, { "Ultima A6000C", SS_Q_HALFTONE | diff --git a/sys/sys/scanio.h b/sys/sys/scanio.h index 4ff92eedef9..50de35bda05 100644 --- a/sys/sys/scanio.h +++ b/sys/sys/scanio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scanio.h,v 1.6 1997/04/05 23:34:18 kstailey Exp $ */ +/* $OpenBSD: scanio.h,v 1.7 1997/04/15 10:51:33 tholo Exp $ */ /* $NetBSD: scanio.h,v 1.1 1996/02/18 20:33:18 mycroft Exp $ */ /* @@ -110,5 +110,6 @@ struct scan_io { #define EPSON_ES300C 12 /* epson es300c */ #define GENERIC_SCSI2 13 /* good luck 8c{)] */ #define ULTIMA_AC6000C 14 /* Ultima A6000C */ +#define ULTIMA_AT3 15 /* Ultima AT3 */ #endif /* _SYS_SCANIO_H */ |