Deleted Added
full compact
ar5111.c (185377) ar5111.c (185406)
1/*
2 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3 * Copyright (c) 2002-2008 Atheros Communications, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *

--- 4 unchanged lines hidden (view full) ---

13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 *
17 * $Id: ar5111.c,v 1.7 2008/11/10 04:08:03 sam Exp $
18 */
19#include "opt_ah.h"
20
1/*
2 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3 * Copyright (c) 2002-2008 Atheros Communications, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *

--- 4 unchanged lines hidden (view full) ---

13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 *
17 * $Id: ar5111.c,v 1.7 2008/11/10 04:08:03 sam Exp $
18 */
19#include "opt_ah.h"
20
21#ifdef AH_SUPPORT_5111
22
23#include "ah.h"
24#include "ah_internal.h"
25
26#include "ah_eeprom_v3.h"
27
28#include "ar5212/ar5212.h"
29#include "ar5212/ar5212reg.h"
30#include "ar5212/ar5212phy.h"

--- 637 unchanged lines hidden (view full) ---

668 ath_hal_free(ahp->ah_rfHal);
669 ahp->ah_rfHal = AH_NULL;
670}
671
672/*
673 * Allocate memory for analog bank scratch buffers
674 * Scratch Buffer will be reinitialized every reset so no need to zero now
675 */
21#include "ah.h"
22#include "ah_internal.h"
23
24#include "ah_eeprom_v3.h"
25
26#include "ar5212/ar5212.h"
27#include "ar5212/ar5212reg.h"
28#include "ar5212/ar5212phy.h"

--- 637 unchanged lines hidden (view full) ---

666 ath_hal_free(ahp->ah_rfHal);
667 ahp->ah_rfHal = AH_NULL;
668}
669
670/*
671 * Allocate memory for analog bank scratch buffers
672 * Scratch Buffer will be reinitialized every reset so no need to zero now
673 */
676HAL_BOOL
674static HAL_BOOL
677ar5111RfAttach(struct ath_hal *ah, HAL_STATUS *status)
678{
679 struct ath_hal_5212 *ahp = AH5212(ah);
680 struct ar5111State *priv;
681
682 HALASSERT(ah->ah_magic == AR5212_MAGIC);
683
684 HALASSERT(ahp->ah_rfHal == AH_NULL);

--- 14 unchanged lines hidden (view full) ---

699 priv->base.getNfAdjust = ar5111GetNfAdjust;
700
701 ahp->ah_pcdacTable = priv->pcdacTable;
702 ahp->ah_pcdacTableSize = sizeof(priv->pcdacTable);
703 ahp->ah_rfHal = &priv->base;
704
705 return AH_TRUE;
706}
675ar5111RfAttach(struct ath_hal *ah, HAL_STATUS *status)
676{
677 struct ath_hal_5212 *ahp = AH5212(ah);
678 struct ar5111State *priv;
679
680 HALASSERT(ah->ah_magic == AR5212_MAGIC);
681
682 HALASSERT(ahp->ah_rfHal == AH_NULL);

--- 14 unchanged lines hidden (view full) ---

697 priv->base.getNfAdjust = ar5111GetNfAdjust;
698
699 ahp->ah_pcdacTable = priv->pcdacTable;
700 ahp->ah_pcdacTableSize = sizeof(priv->pcdacTable);
701 ahp->ah_rfHal = &priv->base;
702
703 return AH_TRUE;
704}
707#endif /* AH_SUPPORT_5111 */
705
706static HAL_BOOL
707ar5111Probe(struct ath_hal *ah)
708{
709 return IS_RAD5111(ah);
710}
711AH_RF(ar5111, ar5111Probe, ar5111RfAttach);