diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2008-03-03 20:50:10 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2008-03-03 20:50:10 +0000 |
commit | 968a958e4ca4257370fedd0d3f42fee12df1c5bd (patch) | |
tree | 603e683c2129f14c582fc411a1aed2d891a4dcf3 | |
parent | 3b95cbd94b93fdc40be50fb5b15433b2d5e91387 (diff) |
Two more rum devices from Ralink driver via sephe@dragonfly.
discussed with deraadt@
-rw-r--r-- | sys/dev/usb/if_rum.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index fc65669d0e8..0a22ceef1d7 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.68 2008/02/22 10:46:57 jsg Exp $ */ +/* $OpenBSD: if_rum.c,v 1.69 2008/03/03 20:50:09 jsg Exp $ */ /*- * Copyright (c) 2005-2007 Damien Bergamini <damien.bergamini@free.fr> @@ -118,13 +118,15 @@ static const struct usb_devno rum_devs[] = { { USB_VENDOR_PLANEX2, USB_PRODUCT_PLANEX2_GWUSMM }, { USB_VENDOR_QCOM, USB_PRODUCT_QCOM_RT2573 }, { USB_VENDOR_QCOM, USB_PRODUCT_QCOM_RT2573_2 }, + { USB_VENDOR_QCOM, USB_PRODUCT_QCOM_RT2573_3 }, { USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT2573 }, { USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT2573_2 }, { USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT2671 }, { USB_VENDOR_SITECOMEU, USB_PRODUCT_SITECOMEU_WL113R2 }, { USB_VENDOR_SITECOMEU, USB_PRODUCT_SITECOMEU_WL172 }, { USB_VENDOR_SURECOM, USB_PRODUCT_SURECOM_RT2573 }, - { USB_VENDOR_SPARKLAN, USB_PRODUCT_SPARKLAN_RT2573 } + { USB_VENDOR_SPARKLAN, USB_PRODUCT_SPARKLAN_RT2573 }, + { USB_VENDOR_ZYXEL, USB_PRODUCT_ZYXEL_RT2573 } }; void rum_attachhook(void *); |