Deleted Added
full compact
Makefile (244952) Makefile (248079)
1#
2# Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright

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

21# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27# THE POSSIBILITY OF SUCH DAMAGES.
28#
1#
2# Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright

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

21# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27# THE POSSIBILITY OF SUCH DAMAGES.
28#
29# $FreeBSD: head/sys/modules/ath/Makefile 244952 2013-01-02 04:00:54Z adrian $
29# $FreeBSD: head/sys/modules/ath/Makefile 248079 2013-03-09 01:05:36Z adrian $
30#
31
32ATH_RATE?= sample # tx rate control algorithm
33
34.PATH: ${.CURDIR}/../../dev/ath
35.PATH: ${.CURDIR}/../../dev/ath/ath_hal
36
37KMOD= if_ath

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

118SRCS+= ar9285_diversity.c ar9285_btcoex.c
119
120# + AR9287 - Kiwi
121.PATH: ${.CURDIR}/../../dev/ath/ath_hal
122SRCS+= ah_eeprom_9287.c
123.PATH: ${.CURDIR}/../../dev/ath/ath_hal/ar9002
124SRCS+= ar9287.c ar9287_reset.c ar9287_attach.c ar9287_cal.c ar9287_olc.c
125
30#
31
32ATH_RATE?= sample # tx rate control algorithm
33
34.PATH: ${.CURDIR}/../../dev/ath
35.PATH: ${.CURDIR}/../../dev/ath/ath_hal
36
37KMOD= if_ath

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

118SRCS+= ar9285_diversity.c ar9285_btcoex.c
119
120# + AR9287 - Kiwi
121.PATH: ${.CURDIR}/../../dev/ath/ath_hal
122SRCS+= ah_eeprom_9287.c
123.PATH: ${.CURDIR}/../../dev/ath/ath_hal/ar9002
124SRCS+= ar9287.c ar9287_reset.c ar9287_attach.c ar9287_cal.c ar9287_olc.c
125
126# + AR9300 HAL
127# .PATH: ${.CURDIR}/../../dev/ath/ath_hal/ar9003
128#SRCS+= ar9300_interrupts.c ar9300_radar.c ar9300_ani.c ar9300_keycache.c
129#SRCS+= ar9300_radio.c ar9300_xmit.c ar9300_attach.c ar9300_mci.c ar9300_stub.c
130#SRCS+= ar9300_xmit_ds.c ar9300_beacon.c ar9300_misc.c ar9300_recv.c
131#SRCS+= ar9300_stub_funcs.c ar9300_eeprom.c ar9300_paprd.c ar9300_recv_ds.c
132#SRCS+= ar9300_freebsd.c ar9300_phy.c ar9300_reset.c ar9300_gpio.c
133#SRCS+= ar9300_power.c ar9300_timer.c
134
126# NB: rate control is bound to the driver by symbol names so only pick one
127.if ${ATH_RATE} == "sample"
128.PATH: ${.CURDIR}/../../dev/ath/ath_rate/sample
129SRCS+= sample.c
130.elif ${ATH_RATE} == "onoe"
131.PATH: ${.CURDIR}/../../dev/ath/ath_rate/onoe
132SRCS+= onoe.c
133.elif ${ATH_RATE} == "amrr"

--- 21 unchanged lines hidden ---
135# NB: rate control is bound to the driver by symbol names so only pick one
136.if ${ATH_RATE} == "sample"
137.PATH: ${.CURDIR}/../../dev/ath/ath_rate/sample
138SRCS+= sample.c
139.elif ${ATH_RATE} == "onoe"
140.PATH: ${.CURDIR}/../../dev/ath/ath_rate/onoe
141SRCS+= onoe.c
142.elif ${ATH_RATE} == "amrr"

--- 21 unchanged lines hidden ---