diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2007-11-10 17:30:27 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2007-11-10 17:30:27 +0000 |
commit | 5cbbc43764a33c4219509bfe7e19d987d01d4a32 (patch) | |
tree | 335e80fb9f792d061b37d0b80111ebf0c4c4d997 /sys/dev/usb/uscanner.c | |
parent | 5fb41c9502f9abb63c336a0462707f4743dcbed7 (diff) |
- add support for more multifunction Epson devices (from FreeBSD and SANE).
I'm not adding any new !MF USB scanner IDs as those can be handled using
libusb and sane-backends (from ports).
- bring the uscanner man page up-to-date with actually supported scanners
ok winiger@ mbalmer@ jmc@, input and ok jsg@
Diffstat (limited to 'sys/dev/usb/uscanner.c')
-rw-r--r-- | sys/dev/usb/uscanner.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/usb/uscanner.c b/sys/dev/usb/uscanner.c index f34f26bb48b..eb5293939cf 100644 --- a/sys/dev/usb/uscanner.c +++ b/sys/dev/usb/uscanner.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uscanner.c,v 1.37 2007/11/06 17:25:15 ajacoutot Exp $ */ +/* $OpenBSD: uscanner.c,v 1.38 2007/11/10 17:30:26 ajacoutot Exp $ */ /* $NetBSD: uscanner.c,v 1.40 2003/01/27 00:32:44 wiz Exp $ */ /* @@ -176,7 +176,10 @@ static const struct uscan_info uscanner_devs[] = { {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_640U }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1650 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_2400 }, 0 }, - {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_DX3850 }, 0 }, + {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_DX3800 }, 0 }, + {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_DX4000 }, 0 }, + {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_DX5000 }, 0 }, + {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_DX6000 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_GT9700F }, USC_KEEP_OPEN }, /* UMAX */ |