From 38d3d227ed003e0485b9550c18248f8700cda0c9 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Thu, 22 Dec 2011 14:09:08 +0000 Subject: [PATCH] Revert r228786. We'll need to work around the warnings in another way. Requested by: adrian MFC after: 1 week --- sys/dev/ath/ath_hal/ar5212/ar5212_misc.c | 2 +- sys/dev/ath/ath_hal/ar5416/ar5416_misc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c b/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c index c30f58254c6b..0ea42d085e5d 100644 --- a/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c +++ b/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c @@ -574,7 +574,7 @@ ar5212SetDecompMask(struct ath_hal *ah, uint16_t keyidx, int en) struct ath_hal_5212 *ahp = AH5212(ah); if (keyidx >= HAL_DECOMP_MASK_SIZE) - return AH_FALSE; + return HAL_EINVAL; OS_REG_WRITE(ah, AR_DCM_A, keyidx); OS_REG_WRITE(ah, AR_DCM_D, en ? AR_DCM_D_EN : 0); ahp->ah_decompMask[keyidx] = en; diff --git a/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c b/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c index 572f71021a1a..b1c1b9842219 100644 --- a/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c +++ b/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c @@ -161,7 +161,7 @@ ar5416SetAntennaSwitch(struct ath_hal *ah, HAL_ANT_SETTING settings) HAL_BOOL ar5416SetDecompMask(struct ath_hal *ah, uint16_t keyidx, int en) { - return AH_TRUE; + return HAL_OK; } /* Setup coverage class */