Skip to content

Commit 37f8d0d

Browse files
tiwaibroonie
authored andcommitted
ASoC: bcm: 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-9-tiwai@suse.de Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent ef99372 commit 37f8d0d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sound/soc/bcm/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# SPDX-License-Identifier: GPL-2.0-only
22
# BCM2835 Platform Support
3-
snd-soc-bcm2835-i2s-objs := bcm2835-i2s.o
3+
snd-soc-bcm2835-i2s-y := bcm2835-i2s.o
44

55
obj-$(CONFIG_SND_BCM2835_SOC_I2S) += snd-soc-bcm2835-i2s.o
66

77
# CYGNUS Platform Support
8-
snd-soc-cygnus-objs := cygnus-pcm.o cygnus-ssp.o
8+
snd-soc-cygnus-y := cygnus-pcm.o cygnus-ssp.o
99

1010
obj-$(CONFIG_SND_SOC_CYGNUS) += snd-soc-cygnus.o
1111

1212
# BCM63XX Platform Support
13-
snd-soc-63xx-objs := bcm63xx-i2s-whistler.o bcm63xx-pcm-whistler.o
13+
snd-soc-63xx-y := bcm63xx-i2s-whistler.o bcm63xx-pcm-whistler.o
1414

1515
obj-$(CONFIG_SND_BCM63XX_I2S_WHISTLER) += snd-soc-63xx.o

0 commit comments

Comments
 (0)