diff options
author | adrian <adrian@FreeBSD.org> | 2013-03-04 07:40:49 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2013-03-04 07:40:49 +0000 |
commit | 9b8f8df1c583114bb6442e9079e689d841ea0b80 (patch) | |
tree | 266a98663fd939b009358567a66c1ef8f3ce9874 /sys/dev/ath/ath_hal/ah.h | |
parent | a0bd41720afb55b501ddff2c3bbd7f50a7c0ba1a (diff) | |
download | FreeBSD-src-9b8f8df1c583114bb6442e9079e689d841ea0b80.zip FreeBSD-src-9b8f8df1c583114bb6442e9079e689d841ea0b80.tar.gz |
add a method to set/clear the VMF field in the TX descriptor.
Obtained from: Qualcomm Atheros
Diffstat (limited to 'sys/dev/ath/ath_hal/ah.h')
-rw-r--r-- | sys/dev/ath/ath_hal/ah.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ath/ath_hal/ah.h b/sys/dev/ath/ath_hal/ah.h index ca2e7ca..0deb9c9 100644 --- a/sys/dev/ath/ath_hal/ah.h +++ b/sys/dev/ath/ath_hal/ah.h @@ -1527,11 +1527,13 @@ struct ath_hal { struct ath_desc *, u_int); void __ahdecl(*ah_set11nAggrLast)(struct ath_hal *, struct ath_desc *); - void __ahdecl(*ah_clr11nAggr)(struct ath_hal *, struct ath_desc *); void __ahdecl(*ah_set11nBurstDuration)(struct ath_hal *, struct ath_desc *, u_int); + void __ahdecl(*ah_set11nVirtMoreFrag)(struct ath_hal *, + struct ath_desc *, u_int); + HAL_BOOL __ahdecl(*ah_getMibCycleCounts) (struct ath_hal *, HAL_SURVEY_SAMPLE *); |