diff options
author | sam <sam@FreeBSD.org> | 2008-12-13 03:48:33 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2008-12-13 03:48:33 +0000 |
commit | 10d83f7763d5d7cdc766f765efddfe4032d0efb9 (patch) | |
tree | c8d06b111e16eda0b7f392543713f2d5e6f2c11f | |
parent | 870265e86c8dbeee1a1419aa10d6fe3895365775 (diff) | |
download | FreeBSD-src-10d83f7763d5d7cdc766f765efddfe4032d0efb9.zip FreeBSD-src-10d83f7763d5d7cdc766f765efddfe4032d0efb9.tar.gz |
add const
Obtained from: netbsd
-rw-r--r-- | sys/dev/ath/ath_hal/ah.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ath/ath_hal/ah.c b/sys/dev/ath/ath_hal/ah.c index 18d31ec..668ace7 100644 --- a/sys/dev/ath/ath_hal/ah.c +++ b/sys/dev/ath/ath_hal/ah.c @@ -14,7 +14,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: ah.c,v 1.15 2008/11/15 22:15:44 sam Exp $ + * $FreeBSD$ */ #include "opt_ah.h" @@ -32,7 +32,7 @@ OS_SET_DECLARE(ah_chips, struct ath_hal_chip); const char* ath_hal_probe(uint16_t vendorid, uint16_t devid) { - struct ath_hal_chip **pchip; + struct ath_hal_chip * const *pchip; OS_SET_FOREACH(pchip, ah_chips) { const char *name = (*pchip)->probe(vendorid, devid); @@ -53,7 +53,7 @@ struct ath_hal* ath_hal_attach(uint16_t devid, HAL_SOFTC sc, HAL_BUS_TAG st, HAL_BUS_HANDLE sh, HAL_STATUS *error) { - struct ath_hal_chip **pchip; + struct ath_hal_chip * const *pchip; OS_SET_FOREACH(pchip, ah_chips) { struct ath_hal_chip *chip = *pchip; @@ -88,7 +88,7 @@ OS_SET_DECLARE(ah_rfs, struct ath_hal_rf); struct ath_hal_rf * ath_hal_rfprobe(struct ath_hal *ah, HAL_STATUS *ecode) { - struct ath_hal_rf **prf; + struct ath_hal_rf * const *prf; OS_SET_FOREACH(prf, ah_rfs) { struct ath_hal_rf *rf = *prf; |