937a049dd9
The kernel now provides a generic hexdump implementation should we need it again, so we can remove it from zd1211rw. After removing that, only one single-user function is left in zd_util. Move that to zd_mac and remove zd_util. Signed-off-by: Ulrich Kunitz <kune@deine-taler.de> Signed-off-by: Daniel Drake <dsd@gentoo.org> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
261 B
Makefile
12 lines
261 B
Makefile
obj-$(CONFIG_ZD1211RW) += zd1211rw.o
|
|
|
|
zd1211rw-objs := zd_chip.o zd_ieee80211.o \
|
|
zd_mac.o zd_netdev.o \
|
|
zd_rf_al2230.o zd_rf_rf2959.o \
|
|
zd_rf_al7230b.o zd_rf_uw2453.o \
|
|
zd_rf.o zd_usb.o
|
|
|
|
ifeq ($(CONFIG_ZD1211RW_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|