diff options
author | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2018-12-04 10:47:33 +0000 |
---|---|---|
committer | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2018-12-04 10:47:33 +0000 |
commit | 0cf530cb1e36e672c7a8cbef6f1b9b834e20c675 (patch) | |
tree | 93e1c9f8eb46d05134a4cbe18055e1a5335d0f99 /sys/dev/ic/rtwnvar.h | |
parent | 2975b01a5b89f23dc156323c95b38cbbbc45ffc0 (diff) |
Add support for RTL8192EU adapters, partly taken from netbsd.
These show up with a variety of vendor/product ids, but the driver will
only match those we've tested so far.
help and testing from kevlo@
ok stsp@ kevlo@
Diffstat (limited to 'sys/dev/ic/rtwnvar.h')
-rw-r--r-- | sys/dev/ic/rtwnvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/rtwnvar.h b/sys/dev/ic/rtwnvar.h index 885332dad9e..6386e4c9e07 100644 --- a/sys/dev/ic/rtwnvar.h +++ b/sys/dev/ic/rtwnvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rtwnvar.h,v 1.13 2018/10/01 22:36:08 jmatthew Exp $ */ +/* $OpenBSD: rtwnvar.h,v 1.14 2018/12/04 10:47:32 jmatthew Exp $ */ /*- * Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr> @@ -102,10 +102,12 @@ struct rtwn_softc { int fwcur; union { struct r92c_rom r92c_rom; + struct r92e_rom r92e_rom; struct r88e_rom r88e_rom; struct r23a_rom r23a_rom; } u; #define sc_r92c_rom u.r92c_rom +#define sc_r92e_rom u.r92e_rom #define sc_r88e_rom u.r88e_rom #define sc_r23a_rom u.r23a_rom |