diff options
author | 2009-07-29 18:01:31 +0000 | |
---|---|---|
committer | 2009-07-29 18:01:31 +0000 | |
commit | c83881c70dea0a91b248de8621ab085bc30c67fe (patch) | |
tree | ee377116f678a1c4b7ddf12f2b3eabfaf0b93825 | |
parent | sync (diff) | |
download | wireguard-openbsd-c83881c70dea0a91b248de8621ab085bc30c67fe.tar.xz wireguard-openbsd-c83881c70dea0a91b248de8621ab085bc30c67fe.zip |
- WL168 -> WL168V4
- P5B, WUSB54GCV2, WL168V1
ok jsg@
-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 }; |