Skip to content

Commit d5c337c

Browse files
tiwaibroonie
authored andcommitted
ASoC: uniphier: 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 72b28ec commit d5c337c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sound/soc/uniphier/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# SPDX-License-Identifier: GPL-2.0
2-
snd-soc-uniphier-aio-cpu-objs := aio-core.o aio-dma.o aio-cpu.o aio-compress.o
3-
snd-soc-uniphier-aio-ld11-objs := aio-ld11.o
4-
snd-soc-uniphier-aio-pxs2-objs := aio-pxs2.o
2+
snd-soc-uniphier-aio-cpu-y := aio-core.o aio-dma.o aio-cpu.o aio-compress.o
3+
snd-soc-uniphier-aio-ld11-y := aio-ld11.o
4+
snd-soc-uniphier-aio-pxs2-y := aio-pxs2.o
55

66
obj-$(CONFIG_SND_SOC_UNIPHIER_AIO) += snd-soc-uniphier-aio-cpu.o
77
obj-$(CONFIG_SND_SOC_UNIPHIER_LD11) += snd-soc-uniphier-aio-ld11.o
88
obj-$(CONFIG_SND_SOC_UNIPHIER_PXS2) += snd-soc-uniphier-aio-pxs2.o
99

10-
snd-soc-uniphier-evea-objs := evea.o
10+
snd-soc-uniphier-evea-y := evea.o
1111
obj-$(CONFIG_SND_SOC_UNIPHIER_EVEA_CODEC) += snd-soc-uniphier-evea.o

0 commit comments

Comments
 (0)