diff options
author | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2019-01-14 06:25:27 +0000 |
---|---|---|
committer | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2019-01-14 06:25:27 +0000 |
commit | 51042def87f3f4f4588c375a6f48f01963ce7d34 (patch) | |
tree | 14baa03648565a4d59e527774784f8215fbf987b /sys/dev/usb | |
parent | 38d3ca624a5e6eb15077b0647de73810c67ba927 (diff) |
match on TP-Link WN821N v5 (RTL8192EU), tested by Jesper Wallin
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/if_urtwn.c | 5 |
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) \ |