mirror of https://github.com/proski/madwifi
Fix mismatching prototypes in HAL
git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@4082 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
parent
a5b3087ab0
commit
4462df298c
|
@ -513,7 +513,7 @@ extern u_int ath_hal_getctl(struct ath_hal *, HAL_CHANNEL *);
|
|||
* based on the current regulatory domain for the specified
|
||||
* channel.
|
||||
*/
|
||||
extern u_int ath_hal_getnfcheckrequired(struct ath_hal *, HAL_CHANNEL *);
|
||||
extern HAL_BOOL ath_hal_getnfcheckrequired(struct ath_hal *, HAL_CHANNEL *);
|
||||
|
||||
/*
|
||||
* Map a public channel definition to the corresponding
|
||||
|
|
|
@ -254,8 +254,8 @@ extern HAL_BOOL ar5210SetKeyCacheEntry(struct ath_hal *, uint16_t entry,
|
|||
extern HAL_BOOL ar5210SetKeyCacheEntryMac(struct ath_hal *,
|
||||
uint16_t, const uint8_t *);
|
||||
|
||||
extern HAL_BOOL ar5210SetPowerMode(struct ath_hal *, uint32_t powerRequest,
|
||||
int setChip);
|
||||
extern HAL_BOOL ar5210SetPowerMode(struct ath_hal *,
|
||||
HAL_POWER_MODE powerRequest, int setChip);
|
||||
extern HAL_POWER_MODE ar5210GetPowerMode(struct ath_hal *);
|
||||
|
||||
extern void ar5210SetBeaconTimers(struct ath_hal *,
|
||||
|
|
|
@ -282,8 +282,8 @@ extern HAL_BOOL ar5211SetKeyCacheEntry(struct ath_hal *, uint16_t entry,
|
|||
extern HAL_BOOL ar5211SetKeyCacheEntryMac(struct ath_hal *,
|
||||
uint16_t, const uint8_t *);
|
||||
|
||||
extern HAL_BOOL ar5211SetPowerMode(struct ath_hal *, uint32_t powerRequest,
|
||||
int setChip);
|
||||
extern HAL_BOOL ar5211SetPowerMode(struct ath_hal *,
|
||||
HAL_POWER_MODE powerRequest, int setChip);
|
||||
extern HAL_POWER_MODE ar5211GetPowerMode(struct ath_hal *);
|
||||
|
||||
extern void ar5211SetBeaconTimers(struct ath_hal *,
|
||||
|
|
Loading…
Reference in New Issue