Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <tiwai@suse.de>
Link: https://lore.kernel.org/r/20240507155540.24815-34-tiwai@suse.de
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Takashi Iwai and committed by
Mark Brown
a9732bf7 c4850e85

+3 -3
+3 -3
sound/soc/xilinx/Makefile
··· 1 1 # 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 3 3 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 5 5 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 7 7 obj-$(CONFIG_SND_SOC_XILINX_SPDIF) += snd-soc-xlnx-spdif.o