[ath] Fix return value check to not complain.

Compilers complain more about things, so let's keep them happy.
This commit is contained in:
Adrian Chadd 2019-04-19 18:00:33 +00:00
parent 70a0f3dcdc
commit 3a9d0aca8a

View File

@ -1352,7 +1352,7 @@ void ath_intr(void *);
== HAL_OK)
#define ath_hal_setrxbufsize(_ah, _req) \
(ath_hal_setcapability(_ah, HAL_CAP_RXBUFSIZE, 0, _req, NULL) \
== HAL_OK)
== AH_TRUE)
#define ath_hal_getchannoise(_ah, _c) \
((*(_ah)->ah_getChanNoise)((_ah), (_c)))