From bbf3201d046378e71cf96afabf209800dfaac508 Mon Sep 17 00:00:00 2001 From: adrian Date: Wed, 26 Jun 2013 04:33:57 +0000 Subject: Add a stub AR93xx RF module just to keep the linker happy. When building AR933x test images, I'd like to only build only the ar9300 HAL. To do this, it needs to supply an RF linker entry or it won't compile. Tested: * AR933x test builds --- sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'sys/contrib') diff --git a/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c b/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c index a350eed..251957e 100644 --- a/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c +++ b/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c @@ -652,3 +652,24 @@ ar9300SetMulticastFilterIndex(struct ath_hal *ah, uint32_t ix) } return (AH_TRUE); } + +/* + * RF attach stubs + */ + +static HAL_BOOL +rf9330_attach(struct ath_hal *ah, HAL_STATUS *status) +{ + + (*status) = HAL_EINVAL; + return (AH_FALSE); +} + +static HAL_BOOL +rf9330_probe(struct ath_hal *ah) +{ + return (AH_FALSE); +} + +AH_RF(RF9330, rf9330_probe, rf9330_attach); + -- cgit v1.1