Lines Matching refs:_ah
309 #define AH_PRIVATE(_ah) ((struct ath_hal_private *)(_ah))
311 #define ath_hal_getChannelEdges(_ah, _cf, _lc, _hc) \
312 AH_PRIVATE(_ah)->ah_getChannelEdges(_ah, _cf, _lc, _hc)
313 #define ath_hal_getWirelessModes(_ah) \
314 AH_PRIVATE(_ah)->ah_getWirelessModes(_ah)
315 #define ath_hal_eepromRead(_ah, _off, _data) \
316 AH_PRIVATE(_ah)->ah_eepromRead(_ah, _off, _data)
317 #define ath_hal_eepromWrite(_ah, _off, _data) \
318 AH_PRIVATE(_ah)->ah_eepromWrite(_ah, _off, _data)
319 #define ath_hal_gpioCfgOutput(_ah, _gpio, _type) \
320 AH_PRIVATE(_ah)->ah_gpioCfgOutput(_ah, _gpio, _type)
321 #define ath_hal_gpioCfgInput(_ah, _gpio) \
322 AH_PRIVATE(_ah)->ah_gpioCfgInput(_ah, _gpio)
323 #define ath_hal_gpioGet(_ah, _gpio) \
324 AH_PRIVATE(_ah)->ah_gpioGet(_ah, _gpio)
325 #define ath_hal_gpioSet(_ah, _gpio, _val) \
326 AH_PRIVATE(_ah)->ah_gpioGet(_ah, _gpio, _val)
327 #define ath_hal_gpioSetIntr(_ah, _gpio, _ilevel) \
328 AH_PRIVATE(_ah)->ah_gpioSetIntr(_ah, _gpio, _ilevel)
329 #define ath_hal_getpowerlimits(_ah, _chans, _nchan) \
330 AH_PRIVATE(_ah)->ah_getChipPowerLimits(_ah, _chans, _nchan)
331 #define ath_hal_getNfAdjust(_ah, _c) \
332 AH_PRIVATE(_ah)->ah_getNfAdjust(_ah, _c)
333 #define ath_hal_getNoiseFloor(_ah, _nfArray) \
334 AH_PRIVATE(_ah)->ah_getNoiseFloor(_ah, _nfArray)
335 #define ath_hal_configPCIE(_ah, _reset) \
336 (_ah)->ah_configPCIE(_ah, _reset)
337 #define ath_hal_disablePCIE(_ah) \
338 (_ah)->ah_disablePCIE(_ah)
339 #define ath_hal_setInterrupts(_ah, _mask) \
340 (_ah)->ah_setInterrupts(_ah, _mask)
342 #define ath_hal_eepromDetach(_ah) \
344 if (AH_PRIVATE(_ah)->ah_eepromDetach != NULL) \
345 AH_PRIVATE(_ah)->ah_eepromDetach(_ah); \
347 #define ath_hal_eepromGet(_ah, _param, _val) \
348 AH_PRIVATE(_ah)->ah_eepromGet(_ah, _param, _val)
349 #define ath_hal_eepromSet(_ah, _param, _val) \
350 AH_PRIVATE(_ah)->ah_eepromSet(_ah, _param, _val)
351 #define ath_hal_eepromGetFlag(_ah, _param) \
352 (AH_PRIVATE(_ah)->ah_eepromGet(_ah, _param, AH_NULL) == HAL_OK)
353 #define ath_hal_getSpurChan(_ah, _ix, _is2G) \
354 AH_PRIVATE(_ah)->ah_getSpurChan(_ah, _ix, _is2G)
355 #define ath_hal_eepromDiag(_ah, _request, _a, _asize, _r, _rsize) \
356 AH_PRIVATE(_ah)->ah_eepromDiag(_ah, _request, _a, _asize, _r, _rsize)
578 #define HALDEBUG(_ah, __m, _fmt, ...)