diff options
author | 2006-02-17 11:07:44 +0000 | |
---|---|---|
committer | 2006-02-17 11:07:44 +0000 | |
commit | 65d214f4113147cb8db68e7eb0b95c941bdb3443 (patch) | |
tree | d3b8ad05a0024f258cf2deb319b667622b7265a9 | |
parent | Use ieee80211_compute_duration() instead of homerolled function. (diff) | |
download | wireguard-openbsd-65d214f4113147cb8db68e7eb0b95c941bdb3443.tar.xz wireguard-openbsd-65d214f4113147cb8db68e7eb0b95c941bdb3443.zip |
Missed part of last atw commit.
-rw-r--r-- | sys/dev/ic/atwvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/atwvar.h b/sys/dev/ic/atwvar.h index b5f5ccddf20..1ed930bb605 100644 --- a/sys/dev/ic/atwvar.h +++ b/sys/dev/ic/atwvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: atwvar.h,v 1.10 2005/12/09 03:46:42 jsg Exp $ */ +/* $OpenBSD: atwvar.h,v 1.11 2006/02/17 11:07:44 jsg Exp $ */ /* $NetBSD: atwvar.h,v 1.13 2004/07/23 07:07:55 dyoung Exp $ */ /* @@ -104,6 +104,8 @@ struct atw_txsoft { int txs_firstdesc; /* first descriptor in packet */ int txs_lastdesc; /* last descriptor in packet */ int txs_ndescs; /* number of descriptors */ + struct ieee80211_duration txs_d0; + struct ieee80211_duration txs_dn; SIMPLEQ_ENTRY(atw_txsoft) txs_q; }; |