summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/athvar.h
diff options
context:
space:
mode:
authordamien <damien@openbsd.org>2008-07-21 18:43:18 +0000
committerdamien <damien@openbsd.org>2008-07-21 18:43:18 +0000
commit30d05aace5dfc9e238681bc4d88f40b3eb18547b (patch)
tree72be209a28398d23c438156138bce5cffc2c6c87 /sys/dev/ic/athvar.h
parentExtra sanity checking for afree(); OK deraadt@ and pvalchev@ (diff)
downloadwireguard-openbsd-30d05aace5dfc9e238681bc4d88f40b3eb18547b.tar.xz
wireguard-openbsd-30d05aace5dfc9e238681bc4d88f40b3eb18547b.zip
instead of passing rx tstamp and rssi to the ieee80211_input function,
pass a pointer to an ieee80211_rxinfo structure containing those two fields plus an extra flags field that indicates whether the frame was decrypted by hardware or not. required for a future fix.
Diffstat (limited to 'sys/dev/ic/athvar.h')
-rw-r--r--sys/dev/ic/athvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/athvar.h b/sys/dev/ic/athvar.h
index f59a5a8167d..8ca19b847ec 100644
--- a/sys/dev/ic/athvar.h
+++ b/sys/dev/ic/athvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: athvar.h,v 1.22 2008/06/14 02:28:14 jsing Exp $ */
+/* $OpenBSD: athvar.h,v 1.23 2008/07/21 18:43:19 damien Exp $ */
/* $NetBSD: athvar.h,v 1.10 2004/08/10 01:03:53 dyoung Exp $ */
/*-
@@ -214,7 +214,7 @@ struct ath_softc {
const struct ieee80211_node *);
void (*sc_recv_mgmt)(struct ieee80211com *,
struct mbuf *, struct ieee80211_node *,
- int, int, u_int32_t);
+ struct ieee80211_rxinfo *, int);
#ifdef __FreeBSD__
device_t sc_dev;
#endif