diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2004-10-16 01:28:46 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2004-10-16 01:28:46 +0000 |
commit | 73f439b3ff70fda1475c6d637b59f4f9e84b0208 (patch) | |
tree | e42f64b1e31ad47b2f4deb9223d8273deb57f5be /sys/dev | |
parent | 5327079115069ac53e5014fdeb7befc6238c2f9c (diff) |
Add Longshine LCS-8138TX and Micronet SP128AR found in linux driver
ok dlg@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/if_url.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/usb/if_url.c b/sys/dev/usb/if_url.c index 864deee4e25..7712ee411cd 100644 --- a/sys/dev/usb/if_url.c +++ b/sys/dev/usb/if_url.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_url.c,v 1.16 2004/09/29 09:51:07 dlg Exp $ */ +/* $OpenBSD: if_url.c,v 1.17 2004/10/16 01:28:45 jsg Exp $ */ /* $NetBSD: if_url.c,v 1.6 2002/09/29 10:19:21 martin Exp $ */ /* * Copyright (c) 2001, 2002 @@ -176,7 +176,11 @@ static const struct url_type { /* MELCO LUA-KTX */ {{ USB_VENDOR_MELCO, USB_PRODUCT_MELCO_LUAKTX }, 0}, /* GREEN HOUSE USBKR100 */ - {{ USB_VENDOR_GREENHOUSE2, USB_PRODUCT_GREENHOUSE2_USBKR100}, 0} + {{ USB_VENDOR_GREENHOUSE2, USB_PRODUCT_GREENHOUSE2_USBKR100}, 0}, + /* Longshine LCS-8138TX */ + {{ USB_VENDOR_ABOCOM, USB_PRODUCT_ABOCOM_LCS8138TX}, 0}, + /* Micronet SP128AR */ + {{ USB_VENDOR_MICRONET, USB_PRODUCT_MICRONET_SP128AR}, 0} }; #define url_lookup(v, p) ((struct url_type *)usb_lookup(url_devs, v, p)) |