From 7c544ae12a07ede78fb75efafa9c4871fb7ac820 Mon Sep 17 00:00:00 2001 From: pooka Date: Mon, 28 Sep 2009 10:22:07 +0000 Subject: [PATCH] Attach DWA-111. XXX: Adapter seems to be generally functional, but at least on -nb5 WPA didn't work very well (managed to get authenticated and sometimes an address via dhcp, but that's it). I can't currently test non-wpa networks, so don't know if it's an issue only with wpa or with the connectivity in general. --- sys/dev/usb/if_rum.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index 61d8de541c5f..c0089d5d17f8 100644 --- a/sys/dev/usb/if_rum.c +++ b/sys/dev/usb/if_rum.c @@ -1,5 +1,5 @@ /* $OpenBSD: if_rum.c,v 1.40 2006/09/18 16:20:20 damien Exp $ */ -/* $NetBSD: if_rum.c,v 1.28 2009/09/23 19:07:19 plunky Exp $ */ +/* $NetBSD: if_rum.c,v 1.29 2009/09/28 10:22:07 pooka Exp $ */ /*- * Copyright (c) 2005-2007 Damien Bergamini @@ -24,7 +24,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_rum.c,v 1.28 2009/09/23 19:07:19 plunky Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_rum.c,v 1.29 2009/09/28 10:22:07 pooka Exp $"); #include "bpfilter.h" @@ -107,6 +107,7 @@ static const struct usb_devno rum_devs[] = { { USB_VENDOR_DICKSMITH, USB_PRODUCT_DICKSMITH_RT2573 }, { USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_DWLG122C1 }, { USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_WUA1340 }, + { USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_DWA111 }, { USB_VENDOR_GIGABYTE, USB_PRODUCT_GIGABYTE_GNWB01GS }, { USB_VENDOR_GIGABYTE, USB_PRODUCT_GIGABYTE_GNWI05GS }, { USB_VENDOR_GIGASET, USB_PRODUCT_GIGASET_RT2573 },