diff options
author | adrian <adrian@FreeBSD.org> | 2013-05-29 04:21:42 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2013-05-29 04:21:42 +0000 |
commit | 394b1022744611e33c0f0d4d7cb8b55272799451 (patch) | |
tree | 641be5a97f443e591be5c0295f228a5e34c7b41c | |
parent | 92a0da36867a9ef454dba7615e47b87f08b653b6 (diff) | |
download | FreeBSD-src-394b1022744611e33c0f0d4d7cb8b55272799451.zip FreeBSD-src-394b1022744611e33c0f0d4d7cb8b55272799451.tar.gz |
Fix a false -> AH_FALSE.
Now, why this hasn't tripped _any_ tinderbox builds yet, I dunno.
It's been like this for a while.
-rw-r--r-- | sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c b/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c index 6d8cb9f..44d473f 100644 --- a/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c +++ b/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c @@ -3554,7 +3554,7 @@ ar9300_init_cal_internal(struct ath_hal *ah, struct ieee80211_channel *chan, * no chip specific code for Jupiter/Posdeion except for register names. */ if (txiqcal_success_flag) { - ar9300_tx_iq_cal_post_proc(ah,ichan, 1, 1,is_cal_reusable,false); + ar9300_tx_iq_cal_post_proc(ah,ichan, 1, 1,is_cal_reusable, AH_FALSE); } } else { if (!txiqcal_success_flag) { |