From: Joe Talbott Date: Mon, 14 Jan 2008 19:27:11 +0000 (+0000) Subject: Add support for Cisco-Linksys WUSB54GC which has a different vendor ID X-Git-Tag: v2.0.1~1379 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/2c498e22940d5d7bc4fbd4cf68d4f824687c0c1b Add support for Cisco-Linksys WUSB54GC which has a different vendor ID than the Linksys WUSB54GC. --- diff --git a/share/man/man4/rum.4 b/share/man/man4/rum.4 index 5ec052371e..95c28930d3 100644 --- a/share/man/man4/rum.4 +++ b/share/man/man4/rum.4 @@ -1,5 +1,5 @@ .\" $OpenBSD: rum.4,v 1.16 2006/10/19 16:53:48 jsg Exp $ -.\" $DragonFly: src/share/man/man4/rum.4,v 1.8 2007/09/16 19:06:26 swildner Exp $ +.\" $DragonFly: src/share/man/man4/rum.4,v 1.9 2008/01/14 19:27:11 josepht Exp $ .\" .\" Copyright (c) 2005, 2006 .\" Damien Bergamini @@ -89,6 +89,8 @@ Buffalo WLI-U2-G54HP .It CNet CWD-854 ver F .It +Cisco-Linksys WUSB54G rev C +.It Conceptronic C54RU ver 2 .It Corega CG-WLUSB2GO diff --git a/sys/dev/netif/rum/if_rum.c b/sys/dev/netif/rum/if_rum.c index fe8af153bf..d75a80738f 100644 --- a/sys/dev/netif/rum/if_rum.c +++ b/sys/dev/netif/rum/if_rum.c @@ -1,5 +1,5 @@ /* $OpenBSD: if_rum.c,v 1.40 2006/09/18 16:20:20 damien Exp $ */ -/* $DragonFly: src/sys/dev/netif/rum/if_rum.c,v 1.23 2008/01/11 14:28:59 sephe Exp $ */ +/* $DragonFly: src/sys/dev/netif/rum/if_rum.c,v 1.24 2008/01/14 19:27:11 josepht Exp $ */ /*- * Copyright (c) 2005, 2006 Damien Bergamini @@ -96,6 +96,7 @@ static const struct usb_devno rum_devs[] = { { USB_DEVICE(0x1044, 0x800a) }, /* GIGABYTE GN-WI05GS */ { USB_DEVICE(0x1371, 0x9022) }, /* (really) C-Net RT2573 */ { USB_DEVICE(0x1371, 0x9032) }, /* (really) C-Net CWD854F */ + { USB_DEVICE(0x13b1, 0x0020) }, /* Cisco-Linksys WUSB54GC */ { USB_DEVICE(0x1472, 0x0009) }, /* Huawei RT2573 */ { USB_DEVICE(0x148f, 0x2573) }, /* Ralink RT2573 */ { USB_DEVICE(0x148f, 0x2671) }, /* Ralink RT2671 */