diff options
| author | Gavin Atkinson <gavin@FreeBSD.org> | 2011-01-04 20:38:52 +0000 |
|---|---|---|
| committer | Gavin Atkinson <gavin@FreeBSD.org> | 2011-01-04 20:38:52 +0000 |
| commit | 3a0c7d068d4009449caeffbfd232be8dca360f32 (patch) | |
| tree | cfd2d135d62a74a271c5e008c4f53dbc47d4ba40 /sys/dev/usb | |
| parent | 2d7537be7a1193a176625b32f8ef6dafc2840fe4 (diff) | |
Notes
Diffstat (limited to 'sys/dev/usb')
| -rw-r--r-- | sys/dev/usb/uftdi.c | 3 | ||||
| -rw-r--r-- | sys/dev/usb/usbdevs | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/usb/uftdi.c b/sys/dev/usb/uftdi.c index 017ddc855ee0..708773cc597e 100644 --- a/sys/dev/usb/uftdi.c +++ b/sys/dev/usb/uftdi.c @@ -190,6 +190,9 @@ uftdi_match(device_t self) if (uaa->vendor == USB_VENDOR_MATRIXORBITAL && (uaa->product == USB_PRODUCT_MATRIXORBITAL_MOUA)) return (UMATCH_VENDOR_PRODUCT); + if (uaa->vendor == USB_VENDOR_FALCOM && + (uaa->product == USB_PRODUCT_FALCOM_TWIST)) + return (UMATCH_VENDOR_PRODUCT); return (UMATCH_NONE); } diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index a1559f61bcc9..6053e6a9c7ad 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1280,6 +1280,9 @@ product ETEK 1COM 0x8007 Serial /* Extended Systems products */ product EXTENDED XTNDACCESS 0x0100 XTNDAccess IrDA +/* Falcom products */ +product FALCOM TWIST 0x0001 USB GSM/GPRS modem + /* FEIYA products */ product FEIYA 5IN1 0x1132 5-in-1 Card Reader |
