diff options
author | joe <joe@FreeBSD.org> | 2003-01-21 11:37:54 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2003-01-21 11:37:54 +0000 |
commit | 03dcfb66ed08fe884ce5b5b7309ceee503235dd4 (patch) | |
tree | e5378d1f4b9e5b2822c04b9a83753cd4b9ddd54d /sys | |
parent | fcd9f1b339c0155d4d48602cd2114845cf1d8349 (diff) | |
download | FreeBSD-src-03dcfb66ed08fe884ce5b5b7309ceee503235dd4.zip FreeBSD-src-03dcfb66ed08fe884ce5b5b7309ceee503235dd4.tar.gz |
Add support for Epson 1660 scanner.
Submitted by: Bruno Schwander <bruno@tinkerbox.org>
MFC after: 3 days
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/usbdevs | 1 | ||||
-rw-r--r-- | sys/dev/usb/uscanner.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 6bb3860..e5f42e3 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -594,6 +594,7 @@ product EPSON 1640 0x010a Perfection 1640SU scanner product EPSON 1240 0x010b Perfection 1240U / 1240Photo scanner product EPSON 640U 0x010c Perfection 640U scanner product EPSON 1650 0x0110 Perfection 1650 scanner +product EPSON 1660 0x011e Perfection 1660 scanner product EPSON GT9700F 0x0112 GT-9700F scanner product EPSON 1260 0x011d Perfection 1260 scanner diff --git a/sys/dev/usb/uscanner.c b/sys/dev/usb/uscanner.c index 545f673..4a793c6 100644 --- a/sys/dev/usb/uscanner.c +++ b/sys/dev/usb/uscanner.c @@ -181,6 +181,7 @@ static const struct uscan_info uscanner_devs[] = { {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1640 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_640U }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1650 }, 0 }, + {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1660 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1260 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_GT9700F }, USC_KEEP_OPEN }, |