summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorabieber <abieber@openbsd.org>2019-11-14 13:50:55 +0000
committerabieber <abieber@openbsd.org>2019-11-14 13:50:55 +0000
commitdf8a0172fa3e8f8d3b9fb86e3c61a2fe26e85b25 (patch)
treeae6f3ae91ce7ddf796d6881b5192514c17fd3e4b
parentWith the stub resolver we have since some time we can resolve the (diff)
downloadwireguard-openbsd-df8a0172fa3e8f8d3b9fb86e3c61a2fe26e85b25.tar.xz
wireguard-openbsd-df8a0172fa3e8f8d3b9fb86e3c61a2fe26e85b25.zip
Remove hardcoding of NetChip vendor/product id so that urndis(4) can attach
when Linux has g_ether configured as RNDIS. OK patrick@, sthen@
-rw-r--r--sys/dev/usb/if_cdce.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/if_cdce.c b/sys/dev/usb/if_cdce.c
index abf0521ccd6..e77947b5c3d 100644
--- a/sys/dev/usb/if_cdce.c
+++ b/sys/dev/usb/if_cdce.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_cdce.c,v 1.75 2018/10/02 19:49:10 stsp Exp $ */
+/* $OpenBSD: if_cdce.c,v 1.76 2019/11/14 13:50:55 abieber Exp $ */
/*
* Copyright (c) 1997, 1998, 1999, 2000-2003 Bill Paul <wpaul@windriver.com>
@@ -100,7 +100,6 @@ const struct cdce_type cdce_devs[] = {
{{ USB_VENDOR_MOTOROLA2, USB_PRODUCT_MOTOROLA2_USBLAN }, CDCE_CRC32 },
{{ USB_VENDOR_MOTOROLA2, USB_PRODUCT_MOTOROLA2_USBLAN2 }, CDCE_CRC32 },
{{ USB_VENDOR_GMATE, USB_PRODUCT_GMATE_YP3X00 }, 0 },
- {{ USB_VENDOR_NETCHIP, USB_PRODUCT_NETCHIP_ETHERNETGADGET }, 0 },
{{ USB_VENDOR_COMPAQ, USB_PRODUCT_COMPAQ_IPAQLINUX }, 0 },
{{ USB_VENDOR_AMBIT, USB_PRODUCT_AMBIT_NTL_250 }, CDCE_SWAPUNION },
};