Skip to content

Commit 3299aa6

Browse files
tiwaibroonie
authored andcommitted
ASoC: loongson: Use *-y instead of *-objs in Makefile
*-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-16-tiwai@suse.de Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 7ca27af commit 3299aa6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sound/soc/loongson/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# SPDX-License-Identifier: GPL-2.0
22
#Platform Support
3-
snd-soc-loongson-i2s-pci-objs := loongson_i2s_pci.o loongson_i2s.o loongson_dma.o
3+
snd-soc-loongson-i2s-pci-y := loongson_i2s_pci.o loongson_i2s.o loongson_dma.o
44
obj-$(CONFIG_SND_SOC_LOONGSON_I2S_PCI) += snd-soc-loongson-i2s-pci.o
55

66
#Machine Support
7-
snd-soc-loongson-card-objs := loongson_card.o
7+
snd-soc-loongson-card-y := loongson_card.o
88
obj-$(CONFIG_SND_SOC_LOONGSON_CARD) += snd-soc-loongson-card.o

0 commit comments

Comments
 (0)