88b126af94
Make debugging configurable, and add a module parameter to give the debug mask. Add debug.c to hold all debug specific code. Signed-off-by: Sujith <Sujith.Manoharan@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
16 lines
209 B
Makefile
16 lines
209 B
Makefile
ath9k-y += hw.o \
|
|
eeprom.o \
|
|
mac.o \
|
|
calib.o \
|
|
ani.o \
|
|
phy.o \
|
|
regd.o \
|
|
beacon.o \
|
|
main.o \
|
|
recv.o \
|
|
xmit.o \
|
|
rc.o
|
|
|
|
ath9k-$(CONFIG_ATH9K_DEBUG) += debug.o
|
|
|
|
obj-$(CONFIG_ATH9K) += ath9k.o
|