Deleted Added
full compact
if_athvar.h (233967) if_athvar.h (234090)
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 233967 2012-04-07 02:51:53Z adrian $
29 * $FreeBSD: head/sys/dev/ath/if_athvar.h 234090 2012-04-10 07:23:37Z 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

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

344 ATH_RESET_NOLOSS = 1,
345 ATH_RESET_FULL = 2,
346} ATH_RESET_TYPE;
347
348struct ath_softc {
349 struct ifnet *sc_ifp; /* interface common */
350 struct ath_stats sc_stats; /* interface statistics */
351 struct ath_tx_aggr_stats sc_aggr_stats;
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

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

344 ATH_RESET_NOLOSS = 1,
345 ATH_RESET_FULL = 2,
346} ATH_RESET_TYPE;
347
348struct ath_softc {
349 struct ifnet *sc_ifp; /* interface common */
350 struct ath_stats sc_stats; /* interface statistics */
351 struct ath_tx_aggr_stats sc_aggr_stats;
352 struct ath_intr_stats sc_intr_stats;
352 int sc_debug;
353 int sc_nvaps; /* # vaps */
354 int sc_nstavaps; /* # station vaps */
355 int sc_nmeshvaps; /* # mbss vaps */
356 u_int8_t sc_hwbssidmask[IEEE80211_ADDR_LEN];
357 u_int8_t sc_nbssid0; /* # vap's using base mac */
358 uint32_t sc_bssidmask; /* bssid mask */
359

--- 655 unchanged lines hidden ---
353 int sc_debug;
354 int sc_nvaps; /* # vaps */
355 int sc_nstavaps; /* # station vaps */
356 int sc_nmeshvaps; /* # mbss vaps */
357 u_int8_t sc_hwbssidmask[IEEE80211_ADDR_LEN];
358 u_int8_t sc_nbssid0; /* # vap's using base mac */
359 uint32_t sc_bssidmask; /* bssid mask */
360

--- 655 unchanged lines hidden ---