aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ath/if_athvar.h
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2013-04-19 06:59:10 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2013-04-19 06:59:10 +0000
commit6f4fb2d8e626a20f11684b785f593a3556966e54 (patch)
tree69f65ff52edd746b1e543d0062a62cd44e8c5c50 /sys/dev/ath/if_athvar.h
parent6ba2699056ebf3ba3f2cfe0433a3d891567ee12a (diff)
downloadsrc-6f4fb2d8e626a20f11684b785f593a3556966e54.tar.gz
src-6f4fb2d8e626a20f11684b785f593a3556966e54.zip
Use uint32_t for fields that are fetched via ath_hal_getcapability().
Notes
Notes: svn path=/head/; revision=249639
Diffstat (limited to 'sys/dev/ath/if_athvar.h')
-rw-r--r--sys/dev/ath/if_athvar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h
index 703bb53bb414..b202c06a6c56 100644
--- a/sys/dev/ath/if_athvar.h
+++ b/sys/dev/ath/if_athvar.h
@@ -772,11 +772,11 @@ struct ath_softc {
u_int32_t sc_avgtsfdeltap;/* TDMA slot adjust (+) */
u_int32_t sc_avgtsfdeltam;/* TDMA slot adjust (-) */
uint16_t *sc_eepromdata; /* Local eeprom data, if AR9100 */
- int sc_txchainmask; /* hardware TX chainmask */
- int sc_rxchainmask; /* hardware RX chainmask */
- int sc_cur_txchainmask; /* currently configured TX chainmask */
- int sc_cur_rxchainmask; /* currently configured RX chainmask */
- int sc_rts_aggr_limit; /* TX limit on RTS aggregates */
+ uint32_t sc_txchainmask; /* hardware TX chainmask */
+ uint32_t sc_rxchainmask; /* hardware RX chainmask */
+ uint32_t sc_cur_txchainmask; /* currently configured TX chainmask */
+ uint32_t sc_cur_rxchainmask; /* currently configured RX chainmask */
+ uint32_t sc_rts_aggr_limit; /* TX limit on RTS aggregates */
int sc_aggr_limit; /* TX limit on all aggregates */
int sc_delim_min_pad; /* Minimum delimiter count */