summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmatthew <jmatthew@openbsd.org>2019-01-14 06:25:26 +0000
committerjmatthew <jmatthew@openbsd.org>2019-01-14 06:25:26 +0000
commit1d8ba341afb1935eaf4da537f507709bf8404be2 (patch)
treeb0f709657f9583982c07b247705f38e7d6e4a3c5
parentThere are cases where a program doing dns requests wants to set the (diff)
downloadwireguard-openbsd-1d8ba341afb1935eaf4da537f507709bf8404be2.tar.xz
wireguard-openbsd-1d8ba341afb1935eaf4da537f507709bf8404be2.zip
match on TP-Link WN821N v5 (RTL8192EU), tested by Jesper Wallin
-rw-r--r--sys/dev/usb/if_urtwn.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/if_urtwn.c b/sys/dev/usb/if_urtwn.c
index 73a5d0c3194..5ddc1bec9df 100644
--- a/sys/dev/usb/if_urtwn.c
+++ b/sys/dev/usb/if_urtwn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_urtwn.c,v 1.81 2018/12/07 01:53:20 kevlo Exp $ */
+/* $OpenBSD: if_urtwn.c,v 1.82 2019/01/14 06:25:26 jmatthew Exp $ */
/*-
* Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr>
@@ -331,7 +331,8 @@ static const struct urtwn_type {
URTWN_DEV_8188EU(TPLINK, RTL8188EUS),
/* URTWN_RTL8192EU */
URTWN_DEV_8192EU(DLINK, DWA131E1),
- URTWN_DEV_8192EU(REALTEK, RTL8192EU)
+ URTWN_DEV_8192EU(REALTEK, RTL8192EU),
+ URTWN_DEV_8192EU(TPLINK, RTL8192EU)
};
#define urtwn_lookup(v, p) \