linux-stable/drivers/staging/wfx/Makefile
Jérôme Pouiller 9671f1338b staging: wfx: place hif_tx_mib functions into a .c file
Until now, all functions from hif_tx_mib.h are declared "static inline".
However, they are not time critical. So, it does not make so much sense.

We prefer to place them in a .c file as for other hif functions.

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20200406111756.154086-9-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2020-04-13 14:32:38 +02:00

25 lines
375 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_mib.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