Deleted Added
full compact
ar5112.c (185377) ar5112.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: ar5112.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: ar5112.c,v 1.7 2008/11/10 04:08:03 sam Exp $
18 */
19#include "opt_ah.h"
20
21#ifdef AH_SUPPORT_5112
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"

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

838 ath_hal_free(ahp->ah_rfHal);
839 ahp->ah_rfHal = AH_NULL;
840}
841
842/*
843 * Allocate memory for analog bank scratch buffers
844 * Scratch Buffer will be reinitialized every reset so no need to zero now
845 */
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"

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

836 ath_hal_free(ahp->ah_rfHal);
837 ahp->ah_rfHal = AH_NULL;
838}
839
840/*
841 * Allocate memory for analog bank scratch buffers
842 * Scratch Buffer will be reinitialized every reset so no need to zero now
843 */
846HAL_BOOL
844static HAL_BOOL
847ar5112RfAttach(struct ath_hal *ah, HAL_STATUS *status)
848{
849 struct ath_hal_5212 *ahp = AH5212(ah);
850 struct ar5112State *priv;
851
852 HALASSERT(ah->ah_magic == AR5212_MAGIC);
853
854 HALASSERT(ahp->ah_rfHal == AH_NULL);

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

869 priv->base.getNfAdjust = ar5212GetNfAdjust;
870
871 ahp->ah_pcdacTable = priv->pcdacTable;
872 ahp->ah_pcdacTableSize = sizeof(priv->pcdacTable);
873 ahp->ah_rfHal = &priv->base;
874
875 return AH_TRUE;
876}
845ar5112RfAttach(struct ath_hal *ah, HAL_STATUS *status)
846{
847 struct ath_hal_5212 *ahp = AH5212(ah);
848 struct ar5112State *priv;
849
850 HALASSERT(ah->ah_magic == AR5212_MAGIC);
851
852 HALASSERT(ahp->ah_rfHal == AH_NULL);

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

867 priv->base.getNfAdjust = ar5212GetNfAdjust;
868
869 ahp->ah_pcdacTable = priv->pcdacTable;
870 ahp->ah_pcdacTableSize = sizeof(priv->pcdacTable);
871 ahp->ah_rfHal = &priv->base;
872
873 return AH_TRUE;
874}
877#endif /* AH_SUPPORT_5112 */
875
876static HAL_BOOL
877ar5112Probe(struct ath_hal *ah)
878{
879 return IS_RAD5112(ah);
880}
881AH_RF(ar5112, ar5112Probe, ar5112RfAttach);