diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-05-07 17:55:28 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-05-08 04:39:30 +0200 |
commit | 9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0 (patch) | |
tree | 08d3c6ba410320054bbe0758cbd481088bede80a /sound/soc/sof/intel | |
parent | ASoC: sh: Use *-y instead of *-objs in Makefile (diff) | |
download | linux-9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0.tar.xz linux-9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0.zip |
ASoC: SOF: 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-25-tiwai@suse.de
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sof/intel')
-rw-r--r-- | sound/soc/sof/intel/Makefile | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sound/soc/sof/intel/Makefile b/sound/soc/sof/intel/Makefile index 806df08e3fd5..b56fa5530b8b 100644 --- a/sound/soc/sof/intel/Makefile +++ b/sound/soc/sof/intel/Makefile @@ -1,22 +1,22 @@ # SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) -snd-sof-acpi-intel-byt-objs := byt.o -snd-sof-acpi-intel-bdw-objs := bdw.o +snd-sof-acpi-intel-byt-y := byt.o +snd-sof-acpi-intel-bdw-y := bdw.o -snd-sof-intel-hda-common-objs := hda-loader.o hda-stream.o hda-trace.o \ +snd-sof-intel-hda-common-y := hda-loader.o hda-stream.o hda-trace.o \ hda-dsp.o hda-ipc.o hda-ctrl.o hda-pcm.o \ hda-dai.o hda-dai-ops.o hda-bus.o \ telemetry.o tracepoints.o -snd-sof-intel-hda-generic-objs := hda.o hda-common-ops.o +snd-sof-intel-hda-generic-y := hda.o hda-common-ops.o -snd-sof-intel-hda-mlink-objs := hda-mlink.o +snd-sof-intel-hda-mlink-y := hda-mlink.o snd-sof-intel-hda-common-$(CONFIG_SND_SOC_SOF_HDA_PROBES) += hda-probes.o -snd-sof-intel-hda-objs := hda-codec.o +snd-sof-intel-hda-y := hda-codec.o -snd-sof-intel-atom-objs := atom.o +snd-sof-intel-atom-y := atom.o obj-$(CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP) += snd-sof-intel-atom.o obj-$(CONFIG_SND_SOC_SOF_BAYTRAIL) += snd-sof-acpi-intel-byt.o @@ -26,14 +26,14 @@ obj-$(CONFIG_SND_SOC_SOF_HDA_GENERIC) += snd-sof-intel-hda-generic.o obj-$(CONFIG_SND_SOC_SOF_HDA_MLINK) += snd-sof-intel-hda-mlink.o obj-$(CONFIG_SND_SOC_SOF_HDA) += snd-sof-intel-hda.o -snd-sof-pci-intel-tng-objs := pci-tng.o -snd-sof-pci-intel-skl-objs := pci-skl.o skl.o hda-loader-skl.o -snd-sof-pci-intel-apl-objs := pci-apl.o apl.o -snd-sof-pci-intel-cnl-objs := pci-cnl.o cnl.o -snd-sof-pci-intel-icl-objs := pci-icl.o icl.o -snd-sof-pci-intel-tgl-objs := pci-tgl.o tgl.o -snd-sof-pci-intel-mtl-objs := pci-mtl.o mtl.o -snd-sof-pci-intel-lnl-objs := pci-lnl.o lnl.o +snd-sof-pci-intel-tng-y := pci-tng.o +snd-sof-pci-intel-skl-y := pci-skl.o skl.o hda-loader-skl.o +snd-sof-pci-intel-apl-y := pci-apl.o apl.o +snd-sof-pci-intel-cnl-y := pci-cnl.o cnl.o +snd-sof-pci-intel-icl-y := pci-icl.o icl.o +snd-sof-pci-intel-tgl-y := pci-tgl.o tgl.o +snd-sof-pci-intel-mtl-y := pci-mtl.o mtl.o +snd-sof-pci-intel-lnl-y := pci-lnl.o lnl.o obj-$(CONFIG_SND_SOC_SOF_MERRIFIELD) += snd-sof-pci-intel-tng.o obj-$(CONFIG_SND_SOC_SOF_INTEL_SKL) += snd-sof-pci-intel-skl.o |