mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 01:51:34 +00:00
590d82e6e6
*-objs suffix is reserved rather for (user-space) host programs while usually *-y suffix is used for kernel drivers (although *-objs works for that purpose for now). Let's correct the old usages of *-objs in Makefiles. Signed-off-by: Takashi Iwai <tiwai@suse.de> Link: https://lore.kernel.org/r/20240507155540.24815-13-tiwai@suse.de Signed-off-by: Mark Brown <broonie@kernel.org>
21 lines
532 B
Makefile
21 lines
532 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
snd-soc-avs-y := dsp.o ipc.o messages.o utils.o core.o loader.o \
|
|
topology.o path.o pcm.o board_selection.o control.o \
|
|
sysfs.o
|
|
snd-soc-avs-y += cldma.o
|
|
snd-soc-avs-y += skl.o apl.o cnl.o icl.o tgl.o
|
|
|
|
snd-soc-avs-y += trace.o
|
|
# tell define_trace.h where to find the trace header
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
ifneq ($(CONFIG_DEBUG_FS),)
|
|
snd-soc-avs-y += probes.o debugfs.o
|
|
endif
|
|
|
|
obj-$(CONFIG_SND_SOC_INTEL_AVS) += snd-soc-avs.o
|
|
|
|
# Machine support
|
|
obj-$(CONFIG_SND_SOC) += boards/
|