Date: Wed, 26 Jun 2013 04:34:45 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r252235 - head/sys/contrib/dev/ath/ath_hal/ar9300 Message-ID: <201306260434.r5Q4YjPn084399@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Wed Jun 26 04:34:45 2013 New Revision: 252235 URL: http://svnweb.freebsd.org/changeset/base/252235 Log: In preparation to support AR933x SoC builds, allow the AH_SUPPORT_AR93(xx) options to set the AR9300 HAL defines. This enables the Wasp, Hornet (and later Scorpion) SoC code. Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd_inc.h Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd_inc.h ============================================================================== --- head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd_inc.h Wed Jun 26 04:34:16 2013 (r252234) +++ head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd_inc.h Wed Jun 26 04:34:45 2013 (r252235) @@ -51,10 +51,13 @@ #define AH_SUPPORT_AR9300 1 /* These are the embedded boards; we don't currently support these */ -//#define AH_SUPPORT_HORNET 1 -//#define AH_SUPPORT_WASP 1 +#ifdef AH_SUPPORT_AR9330 +#define AH_SUPPORT_HORNET 1 +#endif /* AH_SUPPORT_AR9330 */ +#ifdef AH_SUPPORT_AR9340 +#define AH_SUPPORT_WASP 1 +#endif /* AH_SUPPORT_AR9340 */ //#define AH_SUPPORT_SCORPION 1 - #define FIX_NOISE_FLOOR 1 /* XXX this needs to be removed! No atomics in the HAL! */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306260434.r5Q4YjPn084399>