summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/man/man4/udav.43
-rw-r--r--sys/dev/usb/if_udav.c5
2 files changed, 5 insertions, 3 deletions
diff --git a/share/man/man4/udav.4 b/share/man/man4/udav.4
index 0956ddb3fa3..f3b9fdeb3c4 100644
--- a/share/man/man4/udav.4
+++ b/share/man/man4/udav.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: udav.4,v 1.8 2007/01/19 08:40:53 jmc Exp $
+.\" $OpenBSD: udav.4,v 1.9 2007/02/18 14:44:44 jsg Exp $
.\" $NetBSD: udav.4,v 1.1 2003/08/22 06:42:01 itojun Exp $
.\"
.\" Copyright (c) 2003
@@ -51,6 +51,7 @@ driver supports the following adapters:
.Bl -tag -width Dv -offset indent -compact
.It Tn Corega FEther USB-TXC
.It Tn HenTong WK-668
+.It Tn ShanTou ST268
.El
.Pp
For more information on configuring this device, see
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))