diff options
author | joe <joe@FreeBSD.org> | 2003-07-01 08:46:01 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2003-07-01 08:46:01 +0000 |
commit | 6863632f66ef6fca0496108ada538014b2b7a746 (patch) | |
tree | 6a6044a7b0c884433bb899dcf51f4c5009d72142 | |
parent | 080591fcba09ca7bbf7c0d6034cbee293ad1bf87 (diff) | |
download | FreeBSD-src-6863632f66ef6fca0496108ada538014b2b7a746.zip FreeBSD-src-6863632f66ef6fca0496108ada538014b2b7a746.tar.gz |
Support the Epson GT-9300UF usb scanner.
PR: kern/53929
-rw-r--r-- | share/man/man4/uscanner.4 | 1 | ||||
-rw-r--r-- | sys/dev/usb/usbdevs | 1 | ||||
-rw-r--r-- | sys/dev/usb/uscanner.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/share/man/man4/uscanner.4 b/share/man/man4/uscanner.4 index 6fbe9a8..75346bf 100644 --- a/share/man/man4/uscanner.4 +++ b/share/man/man4/uscanner.4 @@ -76,6 +76,7 @@ Supported are: .It Epson Perfection 1640SU .It Epson Perfection 1650 .It Epson Perfection 1660 +.It Epson GT-9300UF .It Epson GT-9700F .It Hewlett Packard Photosmart S20 .It Hewlett Packard Scanjet 2200C diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 7c490c8..b53f22d 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -614,6 +614,7 @@ product EPSON 640U 0x010c Perfection 640U scanner product EPSON 1250 0x010f Perfection 1250U / 1250Photo scanner product EPSON 1650 0x0110 Perfection 1650 scanner product EPSON GT9700F 0x0112 GT-9700F scanner +product EPSON GT9300UF 0x011b GT-9300UF scanner product EPSON 1260 0x011d Perfection 1260 scanner product EPSON 1660 0x011e Perfection 1660 scanner diff --git a/sys/dev/usb/uscanner.c b/sys/dev/usb/uscanner.c index 0f76887..98e3117 100644 --- a/sys/dev/usb/uscanner.c +++ b/sys/dev/usb/uscanner.c @@ -185,6 +185,7 @@ static const struct uscan_info uscanner_devs[] = { {{ 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 }, + {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_GT9300UF }, 0 }, /* UMAX */ {{ USB_VENDOR_UMAX, USB_PRODUCT_UMAX_ASTRA1220U }, 0 }, |