diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-02-18 14:44:45 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-02-18 14:44:45 +0000 |
commit | 5043e753fbfe0490f6548073ca44e95d3d4fde6c (patch) | |
tree | ab7a4f1870b784c654fce268d9fe8a1f540e0b54 /sys | |
parent | 2dd154c38522fdde472a4d32ecb0d1553b541e56 (diff) |
Add support for ShanTou ST268.
Tested by Paul de Weerd.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/if_udav.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/if_udav.c b/sys/dev/usb/if_udav.c index a53dade77de..731e0dc2bee 100644 --- a/sys/dev/usb/if_udav.c +++ b/sys/dev/usb/if_udav.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_udav.c,v 1.19 2006/09/29 08:43:07 jsg Exp $ */ +/* $OpenBSD: if_udav.c,v 1.20 2007/02/18 14:44:44 jsg Exp $ */ /* $NetBSD: if_udav.c,v 1.3 2004/04/23 17:25:25 itojun Exp $ */ /* $nabe: if_udav.c,v 1.3 2003/08/21 16:57:19 nabe Exp $ */ /* @@ -148,7 +148,8 @@ static const struct udav_type { } udav_devs [] = { {{ USB_VENDOR_COREGA, USB_PRODUCT_COREGA_FETHER_USB_TXC }, 0 }, {{ USB_VENDOR_DAVICOM, USB_PRODUCT_DAVICOM_DM9601 }, 0 }, - {{ USB_VENDOR_DAVICOM, USB_PRODUCT_DAVICOM_WK668 }, 0 } + {{ USB_VENDOR_DAVICOM, USB_PRODUCT_DAVICOM_WK668 }, 0 }, + {{ USB_VENDOR_SHANTOU, USB_PRODUCT_SHANTOU_ST268 }, 0 } }; #define udav_lookup(v, p) ((struct udav_type *)usb_lookup(udav_devs, v, p)) |