linux-stable/drivers/staging/wfx/Makefile
Jérôme Pouiller fb2490f693 staging: wfx: implement 802.11 key handling
wfx_set_key() mostly copy bytes on correct offsets. A big piece of code
for a simple work. Unfortunately, I did not found any way to factorize
it.

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20190919142527.31797-20-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2019-10-04 10:48:54 +02:00

24 lines
359 B
Makefile

# SPDX-License-Identifier: GPL-2.0
# Necessary for CREATE_TRACE_POINTS
CFLAGS_debug.o = -I$(src)
wfx-y := \
bh.o \
hwio.o \
fwio.o \
hif_tx.o \
hif_rx.o \
queue.o \
data_tx.o \
data_rx.o \
scan.o \
sta.o \
key.o \
main.o \
sta.o \
debug.o
wfx-$(CONFIG_SPI) += bus_spi.o
wfx-$(subst m,y,$(CONFIG_MMC)) += bus_sdio.o
obj-$(CONFIG_WFX) += wfx.o