diff --git a/share/man/man4/uscanner.4 b/share/man/man4/uscanner.4 index 18b602f7845a..c602222ca7f5 100644 --- a/share/man/man4/uscanner.4 +++ b/share/man/man4/uscanner.4 @@ -122,6 +122,8 @@ Epson Perfection 1250 .It Epson Perfection 1260 .It +Epson Perfection 1270 +.It Epson Expression 1600 .It Epson Perfection 1640SU diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 7f8cd41e99f3..66e34a49abeb 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 ca1dd6580fb6..634065deb614 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 },