Deleted Added
full compact
if_athvar.h (236599) if_athvar.h (236872)
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 236599 2012-06-05 06:03:55Z adrian $
29 * $FreeBSD: head/sys/dev/ath/if_athvar.h 236872 2012-06-11 06:59:28Z 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

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

211 bfs_aggrburst:1, /* part of aggregate burst? */
212 bfs_isretried:1, /* retried frame? */
213 bfs_dobaw:1, /* actually check against BAW? */
214 bfs_addedbaw:1, /* has been added to the BAW */
215 bfs_shpream:1, /* use short preamble */
216 bfs_istxfrag:1, /* is fragmented */
217 bfs_ismrr:1, /* do multi-rate TX retry */
218 bfs_doprot:1, /* do RTS/CTS based protection */
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

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

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

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

--- 798 unchanged lines hidden ---