diff options
author | sam <sam@FreeBSD.org> | 2009-03-30 19:23:49 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2009-03-30 19:23:49 +0000 |
commit | 17f31804478d7c687653b106a7fa0648e81eb417 (patch) | |
tree | 0f6fa3b7b268c52c5ef7f70521123611d79a4ee4 /sys/modules | |
parent | 7c16ec50d624d13d28962b83a858d6f3fa287b73 (diff) | |
download | FreeBSD-src-17f31804478d7c687653b106a7fa0648e81eb417.zip FreeBSD-src-17f31804478d7c687653b106a7fa0648e81eb417.tar.gz |
Remove ATH_SUPPORT_TDMA and use IEEE80211_SUPPORT_TDMA instead. It
doesn't make much sense to configure driver support w/o net80211.
Note this means ath now depends on opt_wlan.h.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/ath/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/ath/Makefile b/sys/modules/ath/Makefile index 068d337..d494c45 100644 --- a/sys/modules/ath/Makefile +++ b/sys/modules/ath/Makefile @@ -38,7 +38,7 @@ KMOD= if_ath SRCS= if_ath.c if_ath_pci.c # NB: v3 eeprom support used by both AR5211 and AR5212; just include it SRCS+= ah_osdep.c ah.c ah_regdomain.c ah_eeprom_v3.c -SRCS+= device_if.h bus_if.h pci_if.h opt_inet.h opt_ath.h opt_ah.h +SRCS+= device_if.h bus_if.h pci_if.h opt_inet.h opt_ath.h opt_ah.h opt_wlan.h # # AR5210 support; these are first generation 11a-only devices. @@ -95,7 +95,7 @@ SRCS+= ar2133.c # NB: rate control is bound to the driver by symbol names so only pick one .if ${ATH_RATE} == "sample" .PATH: ${.CURDIR}/../../dev/ath/ath_rate/sample -SRCS+= sample.c opt_wlan.h +SRCS+= sample.c .elif ${ATH_RATE} == "onoe" .PATH: ${.CURDIR}/../../dev/ath/ath_rate/onoe SRCS+= onoe.c |