mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Call the correct ANI Attach routine.
This commit is contained in:
parent
39bf09d2a0
commit
70d2183a7d
3 changed files with 3 additions and 3 deletions
|
|
@ -81,7 +81,7 @@ ar9160AniSetup(struct ath_hal *ah)
|
|||
.period = 100,
|
||||
};
|
||||
/* NB: ANI is not enabled yet */
|
||||
ar5212AniAttach(ah, &aniparams, &aniparams, AH_FALSE);
|
||||
ar5416AniAttach(ah, &aniparams, &aniparams, AH_FALSE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ static void
|
|||
ar9280AniSetup(struct ath_hal *ah)
|
||||
{
|
||||
/* NB: disable ANI for reliable RIFS rx */
|
||||
ar5212AniAttach(ah, AH_NULL, AH_NULL, AH_FALSE);
|
||||
ar5416AniAttach(ah, AH_NULL, AH_NULL, AH_FALSE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ static void
|
|||
ar9285AniSetup(struct ath_hal *ah)
|
||||
{
|
||||
/* NB: disable ANI for reliable RIFS rx */
|
||||
ar5212AniAttach(ah, AH_NULL, AH_NULL, AH_FALSE);
|
||||
ar5416AniAttach(ah, AH_NULL, AH_NULL, AH_FALSE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue