mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-25 02:49:37 +07:00
57b18a75d9
Flag -D__CHECK_ENDIAN was wrong: it should be -D__CHECK_ENDIAN__ instead. However now this flag is enabled by default, so it can be removed. Signed-off-by: Sergey Matyukevich <sergey.matyukevich.os@quantenna.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
28 lines
448 B
Makefile
28 lines
448 B
Makefile
#
|
|
# Copyright (c) 2015-2016 Quantenna Communications, Inc.
|
|
# All rights reserved.
|
|
#
|
|
|
|
ccflags-y += \
|
|
-Idrivers/net/wireless/quantenna/qtnfmac
|
|
|
|
obj-$(CONFIG_QTNFMAC) += qtnfmac.o
|
|
qtnfmac-objs += \
|
|
core.o \
|
|
commands.o \
|
|
trans.o \
|
|
cfg80211.o \
|
|
event.o \
|
|
util.o \
|
|
qlink_util.o
|
|
|
|
#
|
|
|
|
obj-$(CONFIG_QTNFMAC_PEARL_PCIE) += qtnfmac_pearl_pcie.o
|
|
|
|
qtnfmac_pearl_pcie-objs += \
|
|
shm_ipc.o \
|
|
pearl/pcie.o
|
|
|
|
qtnfmac_pearl_pcie-$(CONFIG_DEBUG_FS) += debug.o
|