summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2004-10-16 01:28:45 +0000
committerjsg <jsg@openbsd.org>2004-10-16 01:28:45 +0000
commit2744d51cd4dd1b36295d5f6f41feda83a8c03053 (patch)
treea89c38b50af6a7409d9d29f9ae7568c41db19b64
parentmatch the given breadn() prototype, ok marius@ (diff)
downloadwireguard-openbsd-2744d51cd4dd1b36295d5f6f41feda83a8c03053.tar.xz
wireguard-openbsd-2744d51cd4dd1b36295d5f6f41feda83a8c03053.zip
Add Longshine LCS-8138TX and Micronet SP128AR found in linux driver
ok dlg@
-rw-r--r--share/man/man4/url.44
-rw-r--r--sys/dev/usb/if_url.c8
2 files changed, 9 insertions, 3 deletions
diff --git a/share/man/man4/url.4 b/share/man/man4/url.4
index 11d4163523f..063329ede65 100644
--- a/share/man/man4/url.4
+++ b/share/man/man4/url.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: url.4,v 1.5 2004/09/30 19:59:26 mickey Exp $
+.\" $OpenBSD: url.4,v 1.6 2004/10/16 01:28:45 jsg Exp $
.\" $NetBSD: url.4,v 1.4 2002/04/02 20:45:40 augustss Exp $
.\"
.\" Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -56,6 +56,8 @@ driver supports the following adapters:
.It Tn Melco Inc. LUA-KTX
.It Tn GreenHouse GH-USB100B
.It Tn Linksys USB100M
+.It Tn Longshine LCS-8138TX
+.It Tn Micronet SP128AR
.It Tn SMC 2208USB/ETH
.El
.Pp
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))