diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-01-19 09:36:19 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-01-19 09:36:19 +0000 |
commit | 5cf9352dd9d3a0cead5532372b4e3f6ed4098081 (patch) | |
tree | 3118c2aca6141a3f010ddeaf080b6909f0cb3875 /sys/dev/ic/rtwvar.h | |
parent | a8924a52172bc7bafb12f501df3b1af32a26135b (diff) |
Use the RF chipset type rather than the hardware version when determining
whether to use host or MAC controlled RF I/O.
From part of NetBSD rev 1.42
Diffstat (limited to 'sys/dev/ic/rtwvar.h')
-rw-r--r-- | sys/dev/ic/rtwvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/rtwvar.h b/sys/dev/ic/rtwvar.h index fb91518560a..9693d9592c6 100644 --- a/sys/dev/ic/rtwvar.h +++ b/sys/dev/ic/rtwvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rtwvar.h,v 1.1 2004/12/29 01:02:31 jsg Exp $ */ +/* $OpenBSD: rtwvar.h,v 1.2 2005/01/19 09:36:18 jsg Exp $ */ /* $NetBSD: rtwvar.h,v 1.10 2004/12/26 22:37:57 mycroft Exp $ */ /*- * Copyright (c) 2004, 2005 David Young. All rights reserved. @@ -438,6 +438,8 @@ struct rtw_softc { u_int8_t pad[64]; } sc_txtapu; enum rtw_access sc_access; + + int sc_hwverid; }; #define sc_if sc_ic.ic_if |