diff options
author | adrian <adrian@FreeBSD.org> | 2011-05-26 20:22:10 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2011-05-26 20:22:10 +0000 |
commit | 34ca846f6ffbf55e7571c54b9c98847b39d64c31 (patch) | |
tree | 08f7f53d72fa8aa13f42e274752fcefcabe42074 | |
parent | ec7d537a68d7c718505e7a4e0064e9596484477f (diff) | |
download | FreeBSD-src-34ca846f6ffbf55e7571c54b9c98847b39d64c31.zip FreeBSD-src-34ca846f6ffbf55e7571c54b9c98847b39d64c31.tar.gz |
Fix a macro name - it's currently unused in this file however, but
keep it consistent with ar9280.c.
-rw-r--r-- | sys/dev/ath/ath_hal/ar9002/ar9287.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ath/ath_hal/ar9002/ar9287.c b/sys/dev/ath/ath_hal/ar9002/ar9287.c index 92501ca..9b874b3 100644 --- a/sys/dev/ath/ath_hal/ar9002/ar9287.c +++ b/sys/dev/ath/ath_hal/ar9002/ar9287.c @@ -36,7 +36,7 @@ struct ar9287State { RF_HAL_FUNCS base; /* public state, must be first */ uint16_t pcdacTable[1]; /* XXX */ }; -#define AR9280(ah) ((struct ar9287State *) AH5212(ah)->ah_rfHal) +#define AR9287(ah) ((struct ar9287State *) AH5212(ah)->ah_rfHal) static HAL_BOOL ar9287GetChannelMaxMinPower(struct ath_hal *, const struct ieee80211_channel *, int16_t *maxPow,int16_t *minPow); |