From: tholo Date: Tue, 15 Apr 1997 10:51:33 +0000 (+0000) Subject: Add quirk, type for AT3 scanner (ViewStation 32) X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=34f03b8e497a6b576f341731be8ed537c84efdd0;p=openbsd Add quirk, type for AT3 scanner (ViewStation 32) --- 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 $ */ /* @@ -141,6 +141,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", 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 */