mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
bfc05938eb
*-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-18-tiwai@suse.de Signed-off-by: Mark Brown <broonie@kernel.org>
47 lines
2.3 KiB
Makefile
47 lines
2.3 KiB
Makefile
# SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
|
|
snd-soc-meson-aiu-y := aiu.o
|
|
snd-soc-meson-aiu-y += aiu-acodec-ctrl.o
|
|
snd-soc-meson-aiu-y += aiu-codec-ctrl.o
|
|
snd-soc-meson-aiu-y += aiu-encoder-i2s.o
|
|
snd-soc-meson-aiu-y += aiu-encoder-spdif.o
|
|
snd-soc-meson-aiu-y += aiu-fifo.o
|
|
snd-soc-meson-aiu-y += aiu-fifo-i2s.o
|
|
snd-soc-meson-aiu-y += aiu-fifo-spdif.o
|
|
snd-soc-meson-axg-fifo-y := axg-fifo.o
|
|
snd-soc-meson-axg-frddr-y := axg-frddr.o
|
|
snd-soc-meson-axg-toddr-y := axg-toddr.o
|
|
snd-soc-meson-axg-tdm-formatter-y := axg-tdm-formatter.o
|
|
snd-soc-meson-axg-tdm-interface-y := axg-tdm-interface.o
|
|
snd-soc-meson-axg-tdmin-y := axg-tdmin.o
|
|
snd-soc-meson-axg-tdmout-y := axg-tdmout.o
|
|
snd-soc-meson-axg-sound-card-y := axg-card.o
|
|
snd-soc-meson-axg-spdifin-y := axg-spdifin.o
|
|
snd-soc-meson-axg-spdifout-y := axg-spdifout.o
|
|
snd-soc-meson-axg-pdm-y := axg-pdm.o
|
|
snd-soc-meson-card-utils-y := meson-card-utils.o
|
|
snd-soc-meson-codec-glue-y := meson-codec-glue.o
|
|
snd-soc-meson-gx-sound-card-y := gx-card.o
|
|
snd-soc-meson-g12a-toacodec-y := g12a-toacodec.o
|
|
snd-soc-meson-g12a-tohdmitx-y := g12a-tohdmitx.o
|
|
snd-soc-meson-t9015-y := t9015.o
|
|
|
|
obj-$(CONFIG_SND_MESON_AIU) += snd-soc-meson-aiu.o
|
|
obj-$(CONFIG_SND_MESON_AXG_FIFO) += snd-soc-meson-axg-fifo.o
|
|
obj-$(CONFIG_SND_MESON_AXG_FRDDR) += snd-soc-meson-axg-frddr.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TODDR) += snd-soc-meson-axg-toddr.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TDM_FORMATTER) += snd-soc-meson-axg-tdm-formatter.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TDM_INTERFACE) += snd-soc-meson-axg-tdm-interface.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TDMIN) += snd-soc-meson-axg-tdmin.o
|
|
obj-$(CONFIG_SND_MESON_AXG_TDMOUT) += snd-soc-meson-axg-tdmout.o
|
|
obj-$(CONFIG_SND_MESON_AXG_SOUND_CARD) += snd-soc-meson-axg-sound-card.o
|
|
obj-$(CONFIG_SND_MESON_AXG_SPDIFIN) += snd-soc-meson-axg-spdifin.o
|
|
obj-$(CONFIG_SND_MESON_AXG_SPDIFOUT) += snd-soc-meson-axg-spdifout.o
|
|
obj-$(CONFIG_SND_MESON_AXG_PDM) += snd-soc-meson-axg-pdm.o
|
|
obj-$(CONFIG_SND_MESON_CARD_UTILS) += snd-soc-meson-card-utils.o
|
|
obj-$(CONFIG_SND_MESON_CODEC_GLUE) += snd-soc-meson-codec-glue.o
|
|
obj-$(CONFIG_SND_MESON_GX_SOUND_CARD) += snd-soc-meson-gx-sound-card.o
|
|
obj-$(CONFIG_SND_MESON_G12A_TOACODEC) += snd-soc-meson-g12a-toacodec.o
|
|
obj-$(CONFIG_SND_MESON_G12A_TOHDMITX) += snd-soc-meson-g12a-tohdmitx.o
|
|
obj-$(CONFIG_SND_SOC_MESON_T9015) += snd-soc-meson-t9015.o
|