diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-07-29 18:01:32 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-07-29 18:01:32 +0000 |
commit | 29127890f6abc580dcf3ee7fb96ba658f8fb8119 (patch) | |
tree | 8ba056f9a2e3360520e029b5d4f666e61eb7dc9f /sys/dev | |
parent | 5076300f8f846c21870c69e64e86b46866c583ec (diff) |
- WL168 -> WL168V4
- P5B, WUSB54GCV2, WL168V1
ok jsg@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/if_urtw.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/usb/if_urtw.c b/sys/dev/usb/if_urtw.c index 3efece9f8de..028ab7ffbb1 100644 --- a/sys/dev/usb/if_urtw.c +++ b/sys/dev/usb/if_urtw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_urtw.c,v 1.23 2009/06/24 01:07:12 martynas Exp $ */ +/* $OpenBSD: if_urtw.c,v 1.24 2009/07/29 18:01:31 martynas Exp $ */ /*- * Copyright (c) 2009 Martynas Venckus <martynas@openbsd.org> @@ -83,10 +83,13 @@ static const struct urtw_type { #define URTW_DEV_RTL8187B(v, p) \ { { USB_VENDOR_##v, USB_PRODUCT_##v##_##p }, URTW_HWREV_8187B } /* Realtek RTL8187 devices. */ + URTW_DEV_RTL8187(ASUS, P5B_WIFI), URTW_DEV_RTL8187(DICKSMITH, RTL8187), + URTW_DEV_RTL8187(LINKSYS4, WUSB54GCV2), URTW_DEV_RTL8187(LOGITEC, RTL8187), URTW_DEV_RTL8187(NETGEAR, WG111V2), URTW_DEV_RTL8187(REALTEK, RTL8187), + URTW_DEV_RTL8187(SITECOMEU, WL168V1) URTW_DEV_RTL8187(SPHAIRON, RTL8187), URTW_DEV_RTL8187(SURECOM, EP9001G2A), /* Realtek RTL8187B devices. */ @@ -95,7 +98,7 @@ static const struct urtw_type { URTW_DEV_RTL8187B(REALTEK, RTL8187B_0), URTW_DEV_RTL8187B(REALTEK, RTL8187B_1), URTW_DEV_RTL8187B(REALTEK, RTL8187B_2), - URTW_DEV_RTL8187B(SITECOMEU, WL168) + URTW_DEV_RTL8187B(SITECOMEU, WL168V4) #undef URTW_DEV_RTL8187 #undef URTW_DEV_RTL8187B }; |