Skip to content

Commit 50537c3

Browse files
tiwaibroonie
authored andcommitted
ASoC: spear: 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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent 9c2f5b6 commit 50537c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sound/soc/spear/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# SPDX-License-Identifier: GPL-2.0
22
# SPEAR Platform Support
3-
snd-soc-spear-pcm-objs := spear_pcm.o
4-
snd-soc-spear-spdif-in-objs := spdif_in.o
5-
snd-soc-spear-spdif-out-objs := spdif_out.o
3+
snd-soc-spear-pcm-y := spear_pcm.o
4+
snd-soc-spear-spdif-in-y := spdif_in.o
5+
snd-soc-spear-spdif-out-y := spdif_out.o
66

77
obj-$(CONFIG_SND_SPEAR_SOC) += snd-soc-spear-pcm.o
88
obj-$(CONFIG_SND_SPEAR_SPDIF_IN) += snd-soc-spear-spdif-in.o

0 commit comments

Comments
 (0)