Skip to content

Commit a9732bf

Browse files
tiwaibroonie
authored andcommitted
ASoC: xilinx: 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 c4850e8 commit a9732bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sound/soc/xilinx/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0-only
2-
snd-soc-xlnx-i2s-objs := xlnx_i2s.o
2+
snd-soc-xlnx-i2s-y := xlnx_i2s.o
33
obj-$(CONFIG_SND_SOC_XILINX_I2S) += snd-soc-xlnx-i2s.o
4-
snd-soc-xlnx-formatter-pcm-objs := xlnx_formatter_pcm.o
4+
snd-soc-xlnx-formatter-pcm-y := xlnx_formatter_pcm.o
55
obj-$(CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER) += snd-soc-xlnx-formatter-pcm.o
6-
snd-soc-xlnx-spdif-objs := xlnx_spdif.o
6+
snd-soc-xlnx-spdif-y := xlnx_spdif.o
77
obj-$(CONFIG_SND_SOC_XILINX_SPDIF) += snd-soc-xlnx-spdif.o

0 commit comments

Comments
 (0)