diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2004-11-10 14:01:26 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2004-11-10 14:01:26 +0000 |
commit | 35f8b96d9662d87e61f22c6bca1092f35815769b (patch) | |
tree | 212e6a6264014053c5e5524d9fe75c000e597aa5 /sys | |
parent | b57d5523613844a2f6ee7ab5f4d9cce798b7c1be (diff) |
add support for the Conceptronic SnapPort USB 2.0 LAN Adapter
thanks go to Paul de Weerd for providing the hardware
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/if_axe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/if_axe.c b/sys/dev/usb/if_axe.c index a7fa46b7c00..12633762bec 100644 --- a/sys/dev/usb/if_axe.c +++ b/sys/dev/usb/if_axe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_axe.c,v 1.13 2004/11/10 10:14:48 grange Exp $ */ +/* $OpenBSD: if_axe.c,v 1.14 2004/11/10 14:01:25 dlg Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000-2003 @@ -157,6 +157,7 @@ int axedebug = 0; */ Static const struct axe_type axe_devs[] = { { { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88172}, 0 }, + { { USB_VENDOR_BILLIONTON, USB_PRODUCT_BILLIONTON_SNAPPORT}, 0 }, { { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DUBE100}, 0 }, { { USB_VENDOR_LINKSYS2, USB_PRODUCT_LINKSYS2_USB200M}, 0 }, { { USB_VENDOR_NETGEAR, USB_PRODUCT_NETGEAR_FA120}, 0 }, |