diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-06-21 13:04:11 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-06-21 13:04:11 +0000 |
commit | bc0ffbeb885d38e6fd0894893e7ba38ed27bde11 (patch) | |
tree | 817cb923778311fa367ce2f961d3cf200ac2091d /sys | |
parent | 8ba0dccfe0d55d155f0f5e6716b81425a26d4cec (diff) |
Add a few RT73 devices that are known to exist in the wild.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/if_rum.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index cebb0129634..1de2a43693f 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.2 2006/06/17 20:17:12 jolan Exp $ */ +/* $OpenBSD: if_rum.c,v 1.3 2006/06/21 13:04:10 jsg Exp $ */ /*- * Copyright (c) 2005, 2006 Damien Bergamini <damien.bergamini@free.fr> * Copyright (c) 2006 Niall O'Higgins <niallo@openbsd.org> @@ -81,8 +81,14 @@ int rum_debug = 0; /* various supported device vendors/products */ static const struct usb_devno rum_devs[] = { - { USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT2573 }, - { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D7050A } + { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D7050A }, + { USB_VENDOR_CISCOLINKSYS, USB_PRODUCT_CISCOLINKSYS_WUSB54GC }, + { USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_C54RU2 }, + { USB_VENDOR_DICKSMITH, USB_PRODUCT_DICKSMITH_CWD854F }, + { USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_DWLG122C1 }, + { USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_WUA1340 }, + { USB_VENDOR_GIGABYTE, USB_PRODUCT_GIGABYTE_GNWB01GS }, + { USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT2573 } }; int rum_alloc_tx_list(struct rum_softc *); |