diff options
author | adrian <adrian@FreeBSD.org> | 2012-05-20 02:49:42 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2012-05-20 02:49:42 +0000 |
commit | 91668b1b5a6d5d1072862765804d3a7815d3474c (patch) | |
tree | 070afda6b6bb671b2108a5891b94b4f0439434cb /sys/modules/ath/Makefile | |
parent | 48cd79c1b49e9103565a81cd1a26f50505fa96a4 (diff) | |
download | FreeBSD-src-91668b1b5a6d5d1072862765804d3a7815d3474c.zip FreeBSD-src-91668b1b5a6d5d1072862765804d3a7815d3474c.tar.gz |
Migrate the TDMA management functions out of if_ath.c into if_ath_tdma.c.
There's some TX path TDMA code in if_ath_tx.c which should be migrated
out, but first I should likely try and verify/fix/repair the TDMA support
in 9.x and -HEAD.
Diffstat (limited to 'sys/modules/ath/Makefile')
-rw-r--r-- | sys/modules/ath/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/ath/Makefile b/sys/modules/ath/Makefile index 96e349e..05cf3a2 100644 --- a/sys/modules/ath/Makefile +++ b/sys/modules/ath/Makefile @@ -36,7 +36,7 @@ ATH_RATE?= sample # tx rate control algorithm KMOD= if_ath SRCS= if_ath.c if_ath_debug.c if_ath_keycache.c if_ath_sysctl.c -SRCS+= if_ath_tx.c if_ath_tx_ht.c if_ath_led.c if_ath_rx.c +SRCS+= if_ath_tx.c if_ath_tx_ht.c if_ath_led.c if_ath_rx.c if_ath_tdma.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 opt_wlan.h |