Deleted Added
full compact
if_athvar.h (165571) if_athvar.h (166013)
1/*-
2 * Copyright (c) 2002-2006 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

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

28 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
29 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
34 * THE POSSIBILITY OF SUCH DAMAGES.
35 *
1/*-
2 * Copyright (c) 2002-2006 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

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

28 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
29 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
34 * THE POSSIBILITY OF SUCH DAMAGES.
35 *
36 * $FreeBSD: head/sys/dev/ath/if_athvar.h 165571 2006-12-27 19:07:09Z sam $
36 * $FreeBSD: head/sys/dev/ath/if_athvar.h 166013 2007-01-15 01:15:57Z sam $
37 */
38
39/*
40 * Defintions for the Atheros Wireless LAN controller driver.
41 */
42#ifndef _DEV_ATH_ATHVAR_H
43#define _DEV_ATH_ATHVAR_H
44

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

203 sc_ledstate: 1, /* LED on/off state */
204 sc_blinking: 1, /* LED blink operation active */
205 sc_mcastkey: 1, /* mcast key cache search */
206 sc_syncbeacon:1,/* sync/resync beacon timers */
207 sc_hasclrkey:1, /* CLR key supported */
208 sc_xchanmode: 1,/* extended channel mode */
209 sc_outdoor : 1;/* outdoor operation */
210 /* rate tables */
37 */
38
39/*
40 * Defintions for the Atheros Wireless LAN controller driver.
41 */
42#ifndef _DEV_ATH_ATHVAR_H
43#define _DEV_ATH_ATHVAR_H
44

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

203 sc_ledstate: 1, /* LED on/off state */
204 sc_blinking: 1, /* LED blink operation active */
205 sc_mcastkey: 1, /* mcast key cache search */
206 sc_syncbeacon:1,/* sync/resync beacon timers */
207 sc_hasclrkey:1, /* CLR key supported */
208 sc_xchanmode: 1,/* extended channel mode */
209 sc_outdoor : 1;/* outdoor operation */
210 /* rate tables */
211#define IEEE80211_MODE_11A_HALF (IEEE80211_MODE_MAX+0)
212#define IEEE80211_MODE_11A_QUARTER (IEEE80211_MODE_MAX+1)
211#define IEEE80211_MODE_HALF (IEEE80211_MODE_MAX+0)
212#define IEEE80211_MODE_QUARTER (IEEE80211_MODE_MAX+1)
213 const HAL_RATE_TABLE *sc_rates[IEEE80211_MODE_MAX+2];
214 const HAL_RATE_TABLE *sc_currates; /* current rate table */
215 enum ieee80211_phymode sc_curmode; /* current phy mode */
216 HAL_OPMODE sc_opmode; /* current operating mode */
217 u_int16_t sc_curtxpow; /* current tx power limit */
218 HAL_CHANNEL sc_curchan; /* current h/w channel */
219 u_int8_t sc_rixmap[256]; /* IEEE to h/w rate table ix */
220 struct {

--- 376 unchanged lines hidden ---
213 const HAL_RATE_TABLE *sc_rates[IEEE80211_MODE_MAX+2];
214 const HAL_RATE_TABLE *sc_currates; /* current rate table */
215 enum ieee80211_phymode sc_curmode; /* current phy mode */
216 HAL_OPMODE sc_opmode; /* current operating mode */
217 u_int16_t sc_curtxpow; /* current tx power limit */
218 HAL_CHANNEL sc_curchan; /* current h/w channel */
219 u_int8_t sc_rixmap[256]; /* IEEE to h/w rate table ix */
220 struct {

--- 376 unchanged lines hidden ---