Skip to content

Commit 62c6137

Browse files
tiwaibroonie
authored andcommitted
ASoC: mxs: 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-19-tiwai@suse.de Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent bfc0593 commit 62c6137

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sound/soc/mxs/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# SPDX-License-Identifier: GPL-2.0
22
# MXS Platform Support
3-
snd-soc-mxs-objs := mxs-saif.o
4-
snd-soc-mxs-pcm-objs := mxs-pcm.o
3+
snd-soc-mxs-y := mxs-saif.o
4+
snd-soc-mxs-pcm-y := mxs-pcm.o
55

66
obj-$(CONFIG_SND_MXS_SOC) += snd-soc-mxs.o snd-soc-mxs-pcm.o
77

88
# i.MX Machine Support
9-
snd-soc-mxs-sgtl5000-objs := mxs-sgtl5000.o
9+
snd-soc-mxs-sgtl5000-y := mxs-sgtl5000.o
1010

1111
obj-$(CONFIG_SND_SOC_MXS_SGTL5000) += snd-soc-mxs-sgtl5000.o

0 commit comments

Comments
 (0)