diff options
author | netchild <netchild@FreeBSD.org> | 2006-06-18 17:29:16 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2006-06-18 17:29:16 +0000 |
commit | 440e48d33e5686308185c81cebb0a0524972969f (patch) | |
tree | 2e3a6781fdadf913545ef72ad132e41fb8fb4059 /sys | |
parent | 203efd1fcaaabf752cad90b0f1155b67781edb42 (diff) | |
download | FreeBSD-src-440e48d33e5686308185c81cebb0a0524972969f.zip FreeBSD-src-440e48d33e5686308185c81cebb0a0524972969f.tar.gz |
Add Epson Perfection 1270 scanner. All other scanners in the PR are already
detected, but with a different name.
PR: 98106
Submitted by: Lars Engels <lars.engels@0x20.net>
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 7f8cd41..66e34a4 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -877,6 +877,7 @@ product EPSON 3200 0x011c Perfection 3200 scanner product EPSON 1260 0x011d Perfection 1260 scanner product EPSON 1660 0x011e Perfection 1660 scanner product EPSON 1670 0x011f Perfection 1670 scanner +product EPSON 1270 0x0120 Perfection 1270 scanner product EPSON 2480 0x0121 Perfection 2480 scanner product EPSON RX425 0x080f Stylus Photo RX425 scanner diff --git a/sys/dev/usb/uscanner.c b/sys/dev/usb/uscanner.c index ca1dd65..634065d 100644 --- a/sys/dev/usb/uscanner.c +++ b/sys/dev/usb/uscanner.c @@ -207,6 +207,7 @@ static const struct uscan_info uscanner_devs[] = { {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1660 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1670 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1260 }, 0 }, + {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_1270 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_RX425 }, 0 }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_3200 }, USC_KEEP_OPEN }, {{ USB_VENDOR_EPSON, USB_PRODUCT_EPSON_GT9700F }, USC_KEEP_OPEN }, |