diff options
author | 2006-10-19 16:53:48 +0000 | |
---|---|---|
committer | 2006-10-19 16:53:48 +0000 | |
commit | 762ed0f17f8be8b272ae47d47682ef03f0c63d1e (patch) | |
tree | 85a392832d98caa7e2688218ceaaeddf66b5129b /sys/dev/usb/if_rum.c | |
parent | Add a sample configuration file for the newly comitted RIP daemon. (diff) | |
download | wireguard-openbsd-762ed0f17f8be8b272ae47d47682ef03f0c63d1e.tar.xz wireguard-openbsd-762ed0f17f8be8b272ae47d47682ef03f0c63d1e.zip |
Support later versions of the ASUS WL-167g which have switched
from ural to rum.
From Jason Crawford <jasonrcrawford@gmail.com>
Diffstat (limited to 'sys/dev/usb/if_rum.c')
-rw-r--r-- | sys/dev/usb/if_rum.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index dede128ace7..4de38f80340 100644 --- a/sys/dev/usb/if_rum.c +++ b/sys/dev/usb/if_rum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rum.c,v 1.40 2006/09/18 16:20:20 damien Exp $ */ +/* $OpenBSD: if_rum.c,v 1.41 2006/10/19 16:53:48 jsg Exp $ */ /*- * Copyright (c) 2005, 2006 Damien Bergamini <damien.bergamini@free.fr> @@ -83,6 +83,7 @@ int rum_debug = 0; /* various supported device vendors/products */ static const struct usb_devno rum_devs[] = { { USB_VENDOR_ABOCOM, USB_PRODUCT_ABOCOM_RT2573 }, + { USB_VENDOR_ASUS, USB_PRODUCT_ASUS_RT2573 }, { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D7050A }, { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D9050V3 }, { USB_VENDOR_CISCOLINKSYS, USB_PRODUCT_CISCOLINKSYS_WUSB54GC }, |