Deleted Added
full compact
if_athvar.h (232794) if_athvar.h (233227)
1/*-
2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGES.
28 *
1/*-
2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGES.
28 *
29 * $FreeBSD: head/sys/dev/ath/if_athvar.h 232794 2012-03-10 19:58:23Z adrian $
29 * $FreeBSD: head/sys/dev/ath/if_athvar.h 233227 2012-03-20 04:50:25Z adrian $
30 */
31
32/*
33 * Defintions for the Atheros Wireless LAN controller driver.
34 */
35#ifndef _DEV_ATH_ATHVAR_H
36#define _DEV_ATH_ATHVAR_H
37

--- 172 unchanged lines hidden (view full) ---

210 int bfs_isretried:1; /* retried frame? */
211 int bfs_dobaw:1; /* actually check against BAW? */
212 int bfs_addedbaw:1; /* has been added to the BAW */
213 int bfs_shpream:1; /* use short preamble */
214 int bfs_istxfrag:1; /* is fragmented */
215 int bfs_ismrr:1; /* do multi-rate TX retry */
216 int bfs_doprot:1; /* do RTS/CTS based protection */
217 int bfs_doratelookup:1; /* do rate lookup before each TX */
30 */
31
32/*
33 * Defintions for the Atheros Wireless LAN controller driver.
34 */
35#ifndef _DEV_ATH_ATHVAR_H
36#define _DEV_ATH_ATHVAR_H
37

--- 172 unchanged lines hidden (view full) ---

210 int bfs_isretried:1; /* retried frame? */
211 int bfs_dobaw:1; /* actually check against BAW? */
212 int bfs_addedbaw:1; /* has been added to the BAW */
213 int bfs_shpream:1; /* use short preamble */
214 int bfs_istxfrag:1; /* is fragmented */
215 int bfs_ismrr:1; /* do multi-rate TX retry */
216 int bfs_doprot:1; /* do RTS/CTS based protection */
217 int bfs_doratelookup:1; /* do rate lookup before each TX */
218 int bfs_need_seqno:1; /* need to assign a seqno for aggregation */
219 int bfs_seqno_assigned:1; /* seqno has been assigned */
218 int bfs_nfl; /* next fragment length */
219
220 /*
221 * These fields are passed into the
222 * descriptor setup functions.
223 */
224 HAL_PKT_TYPE bfs_atype; /* packet type */
225 int bfs_pktlen; /* length of this packet */

--- 784 unchanged lines hidden ---
220 int bfs_nfl; /* next fragment length */
221
222 /*
223 * These fields are passed into the
224 * descriptor setup functions.
225 */
226 HAL_PKT_TYPE bfs_atype; /* packet type */
227 int bfs_pktlen; /* length of this packet */

--- 784 unchanged lines hidden ---